.new-home-page #signupModal .modal-dialog {
    max-width: 760px;
}

.new-home-page #signupModal .signup-modal-content {
    border-radius: 32px;
    border: none;
    padding: 32px 40px 36px;
}

.new-home-page #signupModal .modal-header {
    padding: 0 0 16px;
    background: transparent;
    border: none;
}

.new-home-page #signupModal .modal-header .search-block h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    color: #111111;
}

.new-home-page #signupModal .signup-title {
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0;
}

.new-home-page #signupModal .signup-form-grid {
    row-gap: 18px;
}

.new-home-page #signupModal .signup-field {
    position: relative;
}

.new-home-page #signupModal .signup-field .form-control,
.new-home-page #signupModal .signup-field .form-select {
    border-radius: 15px 15px;
    border: 1px solid #0FA98B;
    background-color: transparent;
    padding: 14px 20px;
    font-size: 18px;
    line-height: 20px;
    color: #7D8583;
    font-weight: 500;
}

.new-home-page #signupModal .signup-field .form-control::placeholder,
.new-home-page #signupModal .signup-field .form-select::placeholder {
    color: #7D8583;
}

.new-home-page #signupModal .signup-field .form-select {
    appearance: none;
}

.new-home-page #signupModal .signup-field .text-danger {
    font-size: 12px;
    padding-top:6px;
}

.new-home-page #signupModal label {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #1e1e1e;
    margin-top: 0;
    font-family: "Syne", sans-serif;
    font-weight: 600;
}

.new-home-page #signupModal label a {
    color: #0FA98B;
    text-decoration: underline;
}

.new-home-page #signupModal .signup-primary-btn {
    border-radius: 15px 15px !important;
    font-weight: 500;
    background: linear-gradient(117.19deg, #064337 -37.04%, #0FA98B 97.47%);
    font-size: 20px !important;
    line-height: 22px !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    max-width: 100%;
}
.new-home-page #signupModal .signup-primary-btn:disabled {
    opacity: 0.8;
}

.new-home-page #signupModal .signup-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #4a4a4a;
}

.new-home-page #signupModal .signup-divider span:first-child,
.new-home-page #signupModal .signup-divider span:last-child {
    height: 1px;
    background: #1E1E1E;
    width: 100px;
}

.new-home-page #signupModal .signup-divider-label {
    white-space: nowrap;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #1E1E1E;
    font-family: "Syne", sans-serif;
}

.new-home-page #signupModal .signup-social-buttons {
    gap: 16px;
}

.new-home-page #signupModal .signup-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
}

.new-home-page #signupModal .signup-social-google {
    background: #ffffff;
    color: #111111;
    border: 1px solid #c6d4d0;
}

.new-home-page #signupModal .signup-social-facebook {
    background: #1877f2;
}

.new-home-page #signupModal .pro-txt {
    text-align: center;
}

.new-home-page #signupModal .signup-field-password {
    position: relative;
}

.new-home-page #signupModal .password-info-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    border: 1px solid #D9D9D9;
    background: #D9D9D9;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.new-home-page #signupModal .password-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    max-width: 320px;
    background: #565656;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 12px;
    line-height: 1.4;
    display: none;
    z-index: 10;
}
.new-home-page #signupModal .password-tooltip p {
    color: #fff;
    font-size: 13px;
    font-family: "Syne", sans-serif;
}

.new-home-page #signupModal .password-tooltip::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 20px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #565656 transparent;
}

.new-home-page #signupModal .signup-field-password:hover .password-tooltip,
.new-home-page #signupModal .password-info-btn:focus + .password-tooltip {
    display: block;
}
.new-home-page #signupModal .social-btn {
    background-color: #143c35;
    color: #fff;
    border-radius: 50px !important;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

@media only screen and (max-width: 767px) {
    .new-home-page #signupModal .modal-dialog {
        max-width: 100%;
        margin: 1.5rem auto;
    }

    .new-home-page #signupModal .signup-modal-content {
        padding: 24px 18px 28px;
        border-radius: 24px;
    }

    .new-home-page #signupModal .signup-title {
        font-size: 26px;
        line-height: 30px;
    }
}

