/* auth.css - dùng chung cho login & signup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Lexend", sans-serif;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
}

.text-login-tile {
    font-size: 46px !important;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-auth-Wheree {
    color: #053C5E;
}

.form-auth {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #fff;
    padding: 40px 30px;
    border-radius: 40px;
    border: 8px solid #fff;
    width: 100%;
    max-width: 692px;
    box-shadow: 0 0 30px 0 rgba(0, 96, 140, 0.05);
    backdrop-filter: blur(40px);
    margin-left: 218px;
}

.title-auth-page {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #152528;
}

.form-register .label-form {
    color: #053C5E !important;
}

.label-form {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
    color: #000000;
}

.input-form {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border: 1px solid #ddd;
    border-radius: 100px;
    outline: none;
    transition: 0.2s;
    font-size: 14px;
}

.input-form:focus,
.input-password input:focus {
    border-color: #ff7c00;
    box-shadow: 0 0 0 3px rgba(255, 124, 0, 0.2);
}

.input-password {
    position: relative;
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 100px;
    outline: none;
    overflow: hidden;
}

.input-password input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding-left: 15px;
    font-size: 14px;
}


.toggle-password {
    position: absolute;
    right: 20px;
    top: 52%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.btn-auth,
.btn-done {
    background: linear-gradient(135deg, #053c5e, #005b99);
    width: 100%;
    height: 35px;
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border: none;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-auth {
    max-width: 295px;
}

.text-forgot_password {
    color: #152528;
    font-weight: 300;
    font-size: 18px;
}

form ul li.text-success,
form ul li.text-danger {
    font-size: 14px;
}

.image-button {
    width: 30px;
    height: 30px;
    object-position: center;
    object-fit: cover;
}

.btn-forgot_password,
.btn-update-password {
    background: linear-gradient(135deg, #053c5e, #005b99);
    width: 100%;
    height: 35px;
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border: none;
    margin-top: 15px;
    transition: 0.3s;
}

.mt-login {
    padding-top: 141px;
    padding-bottom: 141px;
}

.mt-register {
    padding-top: 112px;
    padding-bottom: 170px;
}

.mb-login {
    margin-bottom: 112px;
}

.btn-auth:hover {
    background: linear-gradient(135deg, #005b99, #053c5e);
}

#btnCloseModal {
    cursor: pointer;
}

.input-check {
    width: 16px;
    height: 16px;
    border: 1px #053C5E;
}

.forgot-password-custom {
    display: inline-block;
    margin-top: 10px;
    color: #ff7c00;
    font-size: 14px;
    text-decoration: none;
}
.forgot-password-custom-font-16px{
    font-size: 16px !important;
}
.forgot-password-custom-login {
    font-size: 20px;
}

.font-weight-700 {
    font-weight: 700;
}

.forgot-password-custom:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #878787;
    margin: 12px 0 7px 0; 
}

.divider::before,
.divider::after {
    content: "";
    width: 100%;
    max-width: 154px;
    border-bottom: 1px solid #878787;
}

.divider:not(:empty)::before {
    margin-right: 0.75em;
}

.divider:not(:empty)::after {
    margin-left: 0.75em;
}

.social-btn {
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    transition: 0.3s;
}

.social-btn:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.color-origin {
    color: #ff7c00;
}

.otp-input {
    width: 40px;
    height: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #e6e7e8;
    border-radius: 12px;
    margin: 0 5px;
    outline: none;
    color: #005b99;
}

.toggle-password-image-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    cursor: pointer;
}

.text-forgot-password {
    font-size: 40px;
}

.text-note-otp {
    line-height: 130%;
    font-family: "Reddit Sans", sans-serif;
}

.form-enter-otp {
    min-width: 555px;
}

#countdown {
    font-family: "Sulphur Point", sans-serif;
}

.text-enter-otp {
    font-family: "Poppins", sans-serif;
}

.text-note-bottom {
    max-width: 280px;
    margin: 0 auto;
}

.text-transform-uppercase {
    text-transform: uppercase;
}

.text-return-register {
    font-size: 16px !important;
}

@media (max-width:480px) {

    .form-login .label-form,
    #forgotFormBox .label-form {
        font-size: 18px !important;
    }
        .forgot-password-custom-font-16px {
            font-size: 14px !important;
        }
    .form-enter-otp {
        min-width: auto;
    }

    .form-auth {
        min-width: auto;
        background: #fff;
        padding: 25px 20px;
        border-radius: 15px;
        margin: 0;
    }

    form ul li.text-success,
    form ul li.text-danger {
        font-size: 10px;
    }

    .text-login-tile {
        font-size: 28px !important;
    }

    .label-form {
        font-weight: 400;
        font-size: 14px;
    }

    .text-check-register {
        font-size: 10px;
    }

    .mt-login,
    .mt-register {
        margin-top: 0px;
        padding-top: 92px;
    }

    .forgot-password-custom-login {
        font-size: 12px !important;
    }

    .text-note-login {
        font-size: 14px;
    }

    .title-auth-page {
        font-size: 20px;
        text-align: center;
    }

    .title-change-password {
        font-size: 18px !important;
    }

    .input-form,
    .input-password {
        height: 30px;
    }

    .text-auth-Wheree {
        color: #ff7c00;
    }

    .input-password .icon-eye {
        position: absolute;
        right: 20px;
        top: 52%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #888;
    }

    .input-form input,
    .input-password input {
        padding-left: 10px;
    }

    .btn-auth,
    .btn-done,
    .btn-forgot_password,
    .btn-update-password {
        height: 30px;
        font-size: 16px;
        background: #FF7C00;
    }

    .btn-update-password {
        font-size: 14px;
    }

    .btn-auth {
        margin: 0;
        max-width: 173px;
    }

    .otp-input {
        width: 36px;
        height: 42px;
        font-size: 18px;
    }

    .text-forgot_password {
        font-size: 12px;
    }

    .input-password .icon-eye {
        display: none;
    }

    .auth-section {
        padding: 90px 16px 75px 16px;
        min-height: auto;
    }

    .text-return-register {
        font-size: 14px !important;
    }

    .text-forgot-password-mobile {
        font-size: 26px !important;
    }

    #resetInfoBox h5 {
        font-size: 26px !important;
    }

    #resetInfoBox p {
        font-size: 14px !important;
    }
}