/* Auth forms shared styling */

.bg-img {
    display: none !important;
}

body {
    background-color: #ffffff !important;
    font-family: 'Lexend Deca', sans-serif !important;
}

footer {
    display: none !important;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    color: #8a8a8a;
    cursor: pointer;
    font-size: 1.25rem;
}

.password-wrapper .toggle-password-btn:focus {
    box-shadow: none;
}

.password-requirements {
    margin-top: 12px;
}

.password-requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 6px;
}

.password-requirement .req-icon {
    font-size: 1.2rem;
    color: #c0c0c0;
    transition: color 0.2s ease;
}

.password-requirement.valid {
    color: #1a1a1a;
    font-weight: 500;
}

.password-requirement.valid .req-icon {
    color: #645FF8;
}

.ev_user_info {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ev_user_info .email {
    font-weight: 500;
    color: #1a1a1a;
}

.ev_user_info .change_email {
    color: #645FF8;
    font-weight: 500;
    text-decoration: underline;
}

.resend-otp,
.otp-sending-label,
.otp-sent-label {
    color: #645FF8 !important;
    cursor: pointer;
    font-size: 14px;
}

.timer {
    color: #6a6a6a;
    font-size: 14px;
}

.branding-section {
    background-color: #ffffff;
    padding: 60px 80px 60px 60px;
}

.branding-section .content-wrapper {
    width: 100%;
}

.form-section {
    background-color: #ffffff;
    padding: 40px 60px 40px 40px;
}

.form-section .form-wrapper {
    width: 100%;
    max-width: 420px;
}

@media (max-width: 991.98px) {
    .container-fluid {
        padding: 20px !important;
    }

    .col-lg-6.d-flex {
        padding: 30px 20px !important;
    }

    .branding-section {
        order: -1;
        padding: 30px 20px !important;
        text-align: center;
    }

    .branding-section .desktop-logo {
        height: 50px !important;
    }

    .branding-section .content-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }

    .branding-section p {
        margin-bottom: 16px !important;
    }

    .form-section {
        padding: 30px 20px !important;
    }

    .form-section .form-wrapper {
        max-width: 520px;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding: 15px !important;
    }

    .col-lg-6.d-flex {
        padding: 20px 15px !important;
    }

    h1.display-6 {
        font-size: 1.5rem !important;
    }

    p.fs-5 {
        font-size: 1rem !important;
    }
}

