@charset "UTF-8";
/* ==========================================================================
   AUTH MODULE — Premium Login/Signup Styles
   MyFuture Platform — 2025
   ========================================================================== */
/* ===== CSS Variables ===== */
/* ===== Reset for Auth Page ===== */
body {
    background: var(--bs-gray-50) !important;
    background-image: none !important;
}
.auth-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 138px);
    color: var(--bs-text);
    -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   TOP HEADER BAR
   ========================================================================== */
.auth-topbar {
    background: #fff;
    border-bottom: 1px solid var(--bs-gray-200);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}
.auth-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.auth-topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bs-text);
}
.auth-topbar-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.auth-topbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.auth-topbar-brand-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--bs-navy);
    letter-spacing: 0.5px;
}
.auth-topbar-brand-text span {
    font-size: 11px;
    color: var(--bs-gray-500);
    font-weight: 500;
}
.auth-topbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-text);
}
.auth-topbar-contact>i {
    font-size: 22px;
    color: var(--bs-red);
}
.auth-topbar-contact div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.auth-topbar-contact small {
    font-size: 11px;
    color: var(--bs-gray-500);
}
.auth-topbar-contact strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-navy);
    letter-spacing: 0.3px;
}
/* ==========================================================================
   MAIN CONTENT — Two Column Layout
   ========================================================================== */
.auth-main {
    display: flex;
    flex: 1;
    min-height: 0;
}
/* ===== LEFT PANEL ===== */
.auth-panel-left {
    position: relative;
    width: 42%;
    background: linear-gradient(160deg, #4a0613 0%, #6b0a1c 30%, #960C26 60%, #b01030 100%);
    display: flex;
    padding: 60px 48px;
    overflow: hidden;
}
.auth-panel-left-overlay {
    position: absolute;
    bottom: 0;
    left: 0;  right: 0;
    height: 55%;
    background: url('../images/backgrounds/bg_login.jpg') no-repeat center bottom;
    background-size: cover;
    opacity: 0.2;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}
.auth-panel-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
}
.auth-welcome-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    font-style: italic;
    font-weight: 400;
}
.auth-brand-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}
.auth-brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 40px;
}
/* Feature Items */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    transition: var(--bs-transition);
}
.auth-feature-item:hover {
    transform: translateX(4px);
}
.auth-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFB74D;
}
.auth-feature-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.auth-feature-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}
/* ===== RIGHT PANEL ===== */
.auth-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    background: var(--bs-gray-50);
    overflow-y: auto;
}
.auth-form-wrapper {
    width: 100%;
    max-width: 460px;
    border: 1px solid var(--bs-gray-200);
    border-radius: var(--bs-radius);
    padding: 32px 36px;
}
/* ===== Form Title ===== */
.auth-form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--bs-text);
    margin: 0 0 6px 0;
    text-align: center;
}
.auth-form-title span {
    color: var(--bs-red);
}
.auth-form-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--bs-gray-500);
    margin-bottom: 20px;
}
/* ===== Tabs ===== */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid var(--bs-gray-200);
    margin-bottom: 20px;
    gap: 0;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-gray-500);
    cursor: pointer;
    position: relative;
    transition: var(--bs-transition);
    white-space: nowrap;
}
.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: var(--bs-transition);
}
.auth-tab:hover {
    color: var(--bs-text);
}
.auth-tab.active {
    color: var(--bs-red);
}
.auth-tab.active::after {
    background: var(--bs-red);
}
/* ===== Tab Content ===== */
.auth-tab-content {
    display: none;
}
.auth-tab-content.active {
    display: block;
    animation: authFadeIn 0.3s ease;
}
@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== Alerts ===== */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--bs-radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}
.auth-alert i {
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}
.auth-alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.auth-alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}
.auth-alert-error {
    background: var(--bs-red-light);
    color: var(--bs-red-dark);
    border: 1px solid #FFCDD2;
}
/* ===== Form ===== */
.auth-form {
    width: 100%;
}
/* ===== Input Group ===== */
.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--bs-gray-300);
    border-radius: var(--bs-radius-sm);
    transition: var(--bs-transition);
    margin-bottom: 12px;
    overflow: hidden;
}
.auth-input-group:focus-within {
    border-color: var(--bs-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.08);
}
.auth-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    color: var(--bs-gray-400);
    font-size: 18px;
    transition: var(--bs-transition);
}
.eac-input-wrap {
    flex: 1 1 0;
}
.auth-input-group:focus-within .auth-input-icon {
    color: var(--bs-red);
}
.auth-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px 10px 0;
    font-size: 14px;
    color: var(--bs-text);
    background: transparent;
    height: 42px;
}
.auth-input::placeholder {
    color: var(--bs-gray-400);
}
.auth-toggle-pass {
    background: none;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    color: var(--bs-gray-400);
    font-size: 18px;
    height: 44px;
    display: flex;
    align-items: center;
    transition: var(--bs-transition);
}
.auth-toggle-pass:hover {
    color: var(--bs-gray-600);
}
/* ===== Field Error ===== */
.auth-field-error {
    font-size: 12px;
    color: var(--bs-red);
    margin: -8px 0 12px 48px;
    line-height: 1.4;
}
/* ===== Options Row ===== */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
/* Custom Checkbox */
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--bs-text-light);
    cursor: pointer;
    user-select: none;
    position: relative;
	flex-wrap: wrap
}
.auth-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.auth-checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--bs-gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bs-transition);
    position: relative;
}
.auth-checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}
.auth-checkbox input:checked~.auth-checkmark {
    background: var(--bs-red);
    border-color: var(--bs-red);
}
.auth-checkbox input:checked~.auth-checkmark::after {
    transform: rotate(45deg) scale(1);
}
.auth-forgot-link {
    font-size: 13px;
    color: var(--bs-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--bs-transition);
}
.auth-forgot-link:hover {
    color: var(--bs-red-dark);
    text-decoration: underline;
}
/* ===== Submit Button ===== */
.auth-btn-submit {
    width: 100%;
    height: 44px;
    background: var(--bs-red);
    color: #fff;
    border: none;
    border-radius: var(--bs-radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--bs-transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.auth-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}
.auth-btn-submit:hover {
    background: var(--bs-red-dark);
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35);
    transform: translateY(-1px);
}
.auth-btn-submit:hover::before {
    left: 100%;
}
.auth-btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.25);
}
/* ===== Divider ===== */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 16px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bs-gray-200);
}
.auth-divider span {
    font-size: 12px;
    color: var(--bs-gray-500);
    white-space: nowrap;
    font-weight: 500;
}
/* ===== Social Buttons ===== */
.auth-social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1.5px solid var(--bs-gray-200);
    border-radius: var(--bs-radius-sm);
    background: #fff;
    text-decoration: none;
    color: var(--bs-text);
    font-size: 13px;
    font-weight: 600;
    transition: var(--bs-transition);
    cursor: pointer;
}
.auth-social-btn:hover {
    border-color: var(--bs-gray-400);
    background: var(--bs-gray-50);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
    color: var(--bs-text);
    text-decoration: none;
}
.auth-social-btn svg {
    flex-shrink: 0;
}
/* ===== Register Link ===== */
.auth-register-link {
    text-align: center;
    font-size: 14px;
    color: var(--bs-text-light);
    margin-bottom: 20px;
}
.auth-register-link a {
    color: var(--bs-red);
    text-decoration: none;
    transition: var(--bs-transition);
}
.auth-register-link a:hover {
    color: var(--bs-red-dark);
    text-decoration: underline;
}
/* ===== Security Badge ===== */
.auth-security-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--bs-gray-200);
    border-radius: var(--bs-radius);
    padding: 12px 16px;
}
.auth-security-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bs-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bs-red);
}
.auth-security-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-text);
    margin-bottom: 2px;
}
.auth-security-text span {
    font-size: 12px;
    color: var(--bs-gray-500);
    line-height: 1.5;
}
/* ===== OTP Note ===== */
.auth-otp-note {
    text-align: center;
    font-size: 12px;
    color: var(--bs-gray-500);
    margin-top: 16px;
    line-height: 1.5;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.auth-footer {
    background: #fff;
    border-top: 1px solid var(--bs-gray-200);
    padding: 16px 40px;
    flex-shrink: 0;
}
.auth-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.auth-footer-left p {
    font-size: 12px;
    color: var(--bs-gray-500);
    margin: 0 0 4px 0;
}
.auth-footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.auth-footer-links a {
    font-size: 12px;
    color: var(--bs-gray-500);
    text-decoration: none;
    transition: var(--bs-transition);
}
.auth-footer-links a:hover {
    color: var(--bs-red);
}
.auth-footer-links span {
    font-size: 11px;
    color: var(--bs-gray-300);
}
.auth-footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.auth-footer-right>span {
    font-size: 12px;
    color: var(--bs-gray-500);
}
.auth-footer-socials {
    display: flex;
    gap: 8px;
}
.auth-footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-600);
    font-size: 18px;
    text-decoration: none;
    transition: var(--bs-transition);
}
.auth-footer-socials a:hover {
    background: var(--bs-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}
/* ==========================================================================
   RESPONSIVE — Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .auth-panel-left {
        width: 38%;
        padding: 40px 32px;
    }
    .auth-brand-title {
        font-size: 36px;
    }
    .auth-feature-item {
        padding: 12px 14px;
    }
    .auth-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 17px;
    }
    .auth-panel-right {
        padding: 32px 24px;
    }
}
/* ==========================================================================
   RESPONSIVE — Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .auth-topbar {
        padding: 0 16px;
        height: 56px;
    }
    .auth-topbar-brand-text strong {
        font-size: 14px;
    }
    .auth-topbar-brand-text span {
        display: none;
    }
    .auth-topbar-contact small {
        display: none;
    }
    .auth-topbar-contact strong {
        font-size: 14px;
    }
    .auth-main {
        flex-direction: column;
    }
    .auth-panel-left {
        width: 100%;
        padding: 32px 20px;
        min-height: auto;
    }
    .auth-panel-left-content {
        max-width: 100%;
    }
    .auth-brand-title {
        font-size: 28px;
    }
    .auth-brand-desc {
        margin-bottom: 24px;
    }
    .auth-features {
        gap: 10px;
    }
    .auth-feature-item {
        padding: 12px;
    }
    .auth-feature-info span {
        display: none;
    }
    .auth-panel-right {
        padding: 24px 16px;
    }
    .auth-form-wrapper {
        max-width: 100%;
    }
    .auth-form-title {
        font-size: 26px;
    }
    .auth-social-buttons {
        flex-direction: column;
    }
    .auth-social-btn {
        height: 42px;
    }
    .auth-footer {
        padding: 16px;
    }
    .auth-footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .auth-footer-left {
        text-align: center;
    }
    .auth-footer-links {
        justify-content: center;
    }
    .auth-footer-right {
        flex-direction: column;
        gap: 8px;
    }
}
/* ==========================================================================
   SHARED AUTH STYLES (Signup, Forgot Password pages)
   ========================================================================== */
/* Keep existing auth classes for backward compatibility */
.authentication-wrapper {
    display: flex;
    flex-basis: 100%;
    min-height: 100vh;
    width: 100%;
}
.authentication-wrapper .authentication-inner {
    width: 100%;
}
.authentication-wrapper.authentication-basic {
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.authentication-wrapper.authentication-basic .authentication-inner {
    max-width: 440px;
    position: relative;
}
.authentication-wrapper.authentication-basic .authentication-inner .card {
    z-index: 1;
    border-radius: var(--bs-radius);
    border: 1px solid var(--bs-gray-200);
    box-shadow: var(--bs-shadow-lg);
}
.authentication-wrapper .auth-input-wrapper .auth-input {
    max-width: 50px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    font-size: 150%;
}
@media (max-width: 575.98px) {
    .authentication-wrapper .auth-input-wrapper .auth-input {
        font-size: 1.125rem;
    }
}
.light-style .authentication-wrapper .authentication-bg {
    background-color: #fff;
}
.auth-social-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
}
.frm-forgot,
.frm-signup,
.frm-signin {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}
.auth-social {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
    padding: 0;
    list-style: none;
}
.auth-social li {
    display: block;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
}
.auth-social li a {
    display: block;
    width: 100%;
    height: 34px;
    cursor: pointer;
    outline: none;
    background: url(../images/member/idb-button.png) no-repeat;
    border-radius: 2px;
}
.auth-social a.signin-via-facebook {
    background-position: 0px 0px;
}
.auth-social a.signin-via-google {
    background-position: 0px -41px;
    background-color: #e84c3d;
}
.line-height-2 {
    line-height: 24px;
}
/* Existing class overrides for new design */
.warn-for-you {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    padding: 16px;
    font-size: 13px;
    color: #E65100;
    line-height: 1.6;
}
/* ==========================================================================
   FORGOT PASSWORD PAGE — Additional Styles
   ========================================================================== */
/* Topbar Actions (contact + login button) */
.auth-topbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.auth-topbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 24px;
    background: transparent;
    color: var(--bs-red);
    border: 1.5px solid var(--bs-red);
    border-radius: var(--bs-radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--bs-transition);
}
.auth-topbar-btn:hover {
    background: var(--bs-red);
    color: #fff;
    text-decoration: none;
}
/* Icon Circle */
.auth-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bs-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.auth-icon-circle i {
    font-size: 28px;
    color: var(--bs-red);
}
/* Form Label */
.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-text);
    margin-bottom: 8px;
}
/* Outline Button */
.auth-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: #fff;
    color: var(--bs-text);
    border: 1.5px solid var(--bs-gray-300);
    border-radius: var(--bs-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--bs-transition);
    cursor: pointer;
}
.auth-btn-outline:hover {
    border-color: var(--bs-gray-500);
    background: var(--bs-gray-50);
    color: var(--bs-text);
    text-decoration: none;
}
.auth-btn-outline i {
    font-size: 18px;
}
/* reCAPTCHA Wrapper */
.auth-recaptcha-wrap {
    margin-bottom: 20px;
}
/* Help Box */
.auth-help-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bs-gray-50);
    border: 1px solid var(--bs-gray-200);
    border-radius: var(--bs-radius);
    padding: 18px 20px;
    margin-top: 24px;
}
.auth-help-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #fff;
    border: 1px solid var(--bs-gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-gray-600);
}
.auth-help-content strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-text);
    margin-bottom: 8px;
}
.auth-help-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}
.auth-help-content ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--bs-text-light);
    line-height: 1.8;
}
.auth-help-content ul li i {
    color: #43A047;
    font-size: 14px;
    flex-shrink: 0;
}
.auth-help-content p {
    font-size: 12px;
    color: var(--bs-gray-500);
    margin: 0;
    line-height: 1.5;
}
.auth-help-content p strong {
    display: inline;
    font-size: 12px;
    color: var(--bs-red);
}
/* Mobile: topbar actions */
@media (max-width: 768px) {
    .auth-topbar-actions {
        gap: 12px;
    }
    .auth-topbar-btn {
        height: 34px;
        padding: 0 16px;
        font-size: 12px;
    }
    .auth-icon-circle {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .auth-icon-circle i {
        font-size: 22px;
    }
    .auth-help-box {
        flex-direction: column;
        gap: 10px;
    }
}
/* ==========================================================================
   SIGNUP PAGE — Additional Styles
   ========================================================================== */
/* Wider form wrapper for signup (more fields) */
.auth-form-wrapper--wide {
    max-width: 500px;
}
/* Terms checkbox section */
.auth-terms {
    margin-bottom: 20px;
}
.auth-terms .auth-checkbox {
    font-size: 13px;
    line-height: 1.5;
}
/* Inline link in text */
.auth-link {
    color: var(--bs-red);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--bs-transition);
}
.auth-link:hover {
    color: var(--bs-red-dark);
}
/* Scrollable right panel for long forms */
.auth-panel-right {
    overflow-y: auto;
}
@media (max-width: 768px) {
    .auth-form-wrapper--wide {
        max-width: 100%;
    }
}