/* ===== AUTH PAGE ===== */
:root {
    --primary-color: #1D4E63;
    --primary-dark: #163d50;
    --primary-light: #e6f0f4;
    --primary-mid: #1e6080;
    --secondary-color: #D93535;
    --secondary-hover: #be2e2e;
    --text-dark: #1a1a1a;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --light-gray: #f3f4f6;
    --success-green: #10b981;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100%;
    overflow: hidden;
}

/* ===== SPLIT LAYOUT ===== */
.auth-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* ===== LEFT PANEL - WAVE DESIGN ===== */
.auth-brand-panel {
    width: 55%;
    flex-shrink: 0;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

/* Wave layers on the right edge */
.wave-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 120px;
}

.wave-1 {
    background: var(--card-bg);
    clip-path: path('M120,0 L120,10000 L0,10000 L0,1000 C40,850 80,750 60,600 C40,450 90,350 70,200 C55,100 80,50 120,0 Z');
    z-index: 3;
}

.wave-2 {
    right: 20px;
    width: 130px;
    background: rgba(255, 255, 255, 0.08);
    clip-path: path('M130,0 L130,10000 L0,10000 L0,1000 C50,870 90,760 65,620 C40,470 100,370 75,220 C55,110 85,40 130,0 Z');
    z-index: 2;
}

.wave-3 {
    right: 40px;
    width: 140px;
    background: rgba(255, 255, 255, 0.04);
    clip-path: path('M140,0 L140,10000 L0,10000 L0,1000 C60,880 100,780 70,630 C40,480 110,380 80,230 C55,110 90,40 140,0 Z');
    z-index: 1;
}

/* Brand content */
.brand-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 320px;
}

.brand-welcome {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

/* Brand logo wrapper — white pill-shaped background */
.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 14px 28px;
    margin-bottom: 20px;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(1px 0 0 rgba(255,255,255,0.75))
        drop-shadow(-1px 0 0 rgba(255,255,255,0.75))
        drop-shadow(0 1px 0 rgba(255,255,255,0.75))
        drop-shadow(0 -1px 0 rgba(255,255,255,0.75))
        drop-shadow(1px 1px 0 rgba(255,255,255,0.55))
        drop-shadow(-1px -1px 0 rgba(255,255,255,0.55))
        drop-shadow(1px -1px 0 rgba(255,255,255,0.55))
        drop-shadow(-1px 1px 0 rgba(255,255,255,0.55));
}

.brand-name {
    display: none;
}

.brand-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    margin: 0 auto;
}

/* Brand footer */
.brand-footer {
    position: absolute;
    bottom: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-footer a {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.brand-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

/* ===== RIGHT PANEL - FORM ===== */
.auth-form-panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    background: var(--card-bg);
    overflow-y: auto;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 320px;
}

.auth-form-header {
    margin-bottom: 22px;
}

.auth-form-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== ERROR MESSAGE ===== */
.auth-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.auth-error svg {
    flex-shrink: 0;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--card-bg);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 65, 91, 0.1);
}

.form-input::placeholder {
    color: #b0b7be;
}

/* intl-tel-input overrides */
.phone-input-group {
    width: 100%;
}

.iti {
    width: 100%;
    display: block !important;
}

.iti__flag-container {
    padding: 2px;
}

.iti__selected-flag {
    background: var(--light-gray) !important;
    border-right: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
    height: 40px !important;
}

.phone-number-input {
    border-radius: var(--radius-sm) !important;
    width: 100% !important;
    /* Remove manual padding-left, intl-tel-input handles this */
}


/* Country Dropdown managed by intl-tel-input */


/* ===== FORM OPTIONS ROW ===== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.terms-link,
.terms-link:visited {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.forgot-link {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== SIGN IN BUTTON ===== */
.btn-signin {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-signin:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 65, 91, 0.3);
}

.btn-signin:active:not(:disabled) {
    transform: translateY(0);
}

.btn-signin:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== DIVIDER ===== */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 18px 0;
    gap: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== SOCIAL BUTTONS ===== */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.btn-social:hover:not(:disabled) {
    background: var(--light-gray);
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-social:active:not(:disabled) {
    transform: translateY(0);
}

.btn-social:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-social svg {
    flex-shrink: 0;
}

.btn-social span {
    font-weight: 600;
}

/* ===== FOOTER ===== */
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.register-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

/* ── Tablet: 768px – 1024px ── stacked mobile-style layout ── */
@media (min-width: 768px) and (max-width: 1024px) {
    html, body {
        height: 100vh;
        overflow: hidden;
        background: var(--bg-color);
    }

    .auth-container {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    /* ── Brand panel: compact top strip with curved bottom ── */
    .auth-brand-panel {
        width: 100%;
        flex-shrink: 0;
        min-height: 0;
        padding: 14px 48px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0 0 40px 40px;
        position: relative;
        z-index: 2;
    }

    /* hide the right-edge wave layers */
    .wave-layer {
        display: none;
    }

    /* ── Brand content: horizontal row, centered ── */
    .brand-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        width: auto;
        max-width: 440px;
        margin: 0 auto;
        text-align: left;
    }

    .brand-welcome {
        display: none;
    }

    .brand-logo-wrap {
        background: transparent;
        border: none;
        padding: 12px 24px;
        margin-bottom: 0;
    }

    .brand-logo {
        height: 80px;
        width: auto;
        display: block;
    }

    /* brand-name-block: vertical stack next to logo */
    .brand-name-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .brand-name {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 1.1;
        color: white;
    }

    .brand-description {
        display: none;
    }

    /* hide original brand-footer — mobile-footer-links used instead */
    .brand-footer {
        display: none;
    }

    /* ── Form panel ── */
    .auth-form-panel {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 40px 12px;
        margin-top: -28px;
        background: var(--bg-color);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .auth-form-wrapper {
        width: 100%;
        max-width: 480px;
        overflow-y: auto;
        background: var(--card-bg);
        border-radius: 24px;
        padding: 24px 28px 20px;
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
        margin-top: 8px;
    }

    .auth-form-header h2 {
        font-size: 1.25rem;
        font-weight: 700;
    }

    /* ── Show mobile footer links on tablet too ── */
    .mobile-footer-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 20px;
        padding-bottom: 12px;
    }

    .mobile-footer-links a {
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--text-muted);
        text-decoration: none;
        letter-spacing: 0.1em;
        transition: var(--transition);
        padding: 8px 4px;
    }

    .mobile-footer-links a:hover {
        color: var(--primary-color);
    }

    .mobile-footer-links .footer-dot {
        width: 3px;
        height: 3px;
        background: var(--border-color);
        border-radius: 50%;
    }
}

/* ── Mobile: ≤ 767px ── stacked layout with polished mobile visuals ── */
@media (max-width: 767px) {
    html, body {
        height: 100vh;
        overflow: hidden;
        background: var(--bg-color);
    }

    .auth-container {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    /* ── Brand panel: compact top strip with smooth curved bottom ── */
    .auth-brand-panel {
        width: 100%;
        flex-shrink: 0;
        min-height: 0;
        padding: 16px 24px 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0 0 40px 40px;
        position: relative;
        z-index: 2;
    }

    /* hide the right-edge wave layers */
    .wave-layer {
        display: none;
    }

    /* ── Brand content: horizontal row, centered ── */
    .brand-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .brand-welcome {
        display: none;
    }

    .brand-logo-wrap {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 8px 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .brand-logo {
        height: 100px;
        width: auto;
        min-width: 0;
        object-fit: contain;
        display: block;
    }

    /* brand-name-block: name inline beside logo */
    .brand-name-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .brand-name {
        font-size: 1.35rem;
        font-weight: 800;
        margin-bottom: 0;
        line-height: 1;
        color: white;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        opacity: 0.95;
    }

    .brand-description {
        display: none;
    }

    /* hide original brand-footer — mobile-footer-links used instead */
    .brand-footer {
        display: none;
    }

    /* ── Form panel ── */
    .auth-form-panel {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px 14px 10px;
        margin-top: -20px;
        background: var(--bg-color);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .auth-form-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        background: var(--card-bg);
        border-radius: 20px;
        padding: 20px 18px 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
        margin-top: 8px;
    }

    .auth-form-header {
        margin-bottom: 18px;
    }

    .auth-form-header h2 {
        font-size: 1.1rem;
        font-weight: 700;
    }

    /* ── Mobile footer links (CREATE HERE · DISCOVER HERE) ── */
    .mobile-footer-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 20px;
        padding-bottom: 8px;
    }

    .mobile-footer-links a {
        font-size: 0.6rem;
        font-weight: 700;
        color: var(--text-muted);
        text-decoration: none;
        letter-spacing: 0.1em;
        transition: var(--transition);
        padding: 8px 4px;
    }

    .mobile-footer-links a:hover {
        color: var(--primary-color);
    }

    .mobile-footer-links .footer-dot {
        width: 3px;
        height: 3px;
        background: var(--border-color);
        border-radius: 50%;
    }

    /* ── Form spacing ── */
    .form-group {
        margin-bottom: 8px;
    }

    .form-input {
        height: 38px;
        font-size: 0.85rem;
    }

    .country-code-btn {
        height: 38px;
    }

    .iti__selected-flag {
        height: 38px !important;
    }

    .btn-signin {
        height: 38px;
        font-size: 0.85rem;
        border-radius: 10px;
        margin-top: 2px;
    }

    .auth-divider {
        margin: 9px 0;
    }

    .social-buttons {
        gap: 8px;
    }

    .btn-social {
        width: 100%;
        height: 38px;
    }

    .auth-footer {
        margin-top: 10px;
        font-size: 0.75rem;
    }
}

/* ── Powered by Zencia AI badge ── */
.powered-badge {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.powered-badge strong {
    color: #D93535;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Remove CREATE HERE / DISCOVER HERE on all devices */
.mobile-footer-links {
    display: none !important;
}

/* Extra small mobile devices */
@media (max-width: 500px) {
    .auth-brand-panel {
        min-height: 160px;
        padding: 28px 20px 44px;
    }

    .brand-logo {
        height: 110px;
        width: 110px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .auth-form-panel {
        padding: 28px 16px 16px;
    }

    .auth-form-wrapper {
        padding: 24px 18px 20px;
    }
}

/* ── Tablet landscape: 768–1024px wide, short viewport ── */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 700px) {
    .auth-brand-panel {
        padding: 8px 48px 24px;
    }

    .brand-logo {
        height: 56px;
    }

    .auth-form-panel {
        padding: 10px 40px 6px;
        margin-top: -20px;
    }

    .auth-form-wrapper {
        padding: 16px 24px 12px;
        margin-top: 4px;
    }

    .auth-form-header {
        margin-bottom: 14px;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .form-input {
        height: 36px;
        font-size: 0.83rem;
    }

    .btn-signin {
        height: 36px;
        font-size: 0.83rem;
    }

    .btn-social {
        height: 36px;
        font-size: 0.83rem;
    }

    .auth-divider {
        margin: 8px 0;
    }

    .social-buttons {
        gap: 7px;
    }

    .auth-footer {
        margin-top: 8px;
        font-size: 0.75rem;
    }
}

/* ── Wide tablet / small desktop landscape: >1024px wide, short viewport ── */
@media (min-width: 1025px) and (max-height: 760px) {
    .auth-form-panel {
        padding: 24px 48px;
    }

    .auth-form-header {
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-input {
        height: 38px;
    }

    .btn-signin {
        height: 38px;
    }

    .btn-social {
        height: 38px;
    }

    .auth-divider {
        margin: 12px 0;
    }

    .auth-footer {
        margin-top: 12px;
    }
}

/* ── Mid-size mobile (500–767px): constrain card width ── */
@media (min-width: 500px) and (max-width: 767px) {
    .auth-form-panel {
        align-items: center;
    }
    .auth-form-wrapper {
        max-width: 460px;
    }
}

/* ── Short-height mobile portrait: compact spacing ── */
@media (max-width: 767px) and (max-height: 650px) {
    .auth-form-header {
        margin-bottom: 12px;
    }
    .form-group {
        margin-bottom: 6px;
    }
    .form-options {
        margin-bottom: 10px;
    }
    .auth-divider {
        margin: 7px 0;
    }
    .social-buttons {
        gap: 6px;
    }
    .auth-footer {
        margin-top: 8px;
    }
    .mobile-footer-links {
        margin-top: 10px;
        padding-bottom: 4px;
    }
}

/* ── iOS smooth scrolling ── */
.auth-form-wrapper {
    -webkit-overflow-scrolling: touch;
}

/* ── Phone landscape: switch to compact side-by-side layout ────────── */
/* Catches all phones in landscape (height ≤ 500px) but NOT tablets    */
@media (orientation: landscape) and (max-height: 500px) {
    html, body {
        height: 100%;
        overflow: hidden;
    }
    .auth-container {
        flex-direction: row !important;
        height: 100vh;
        overflow: hidden;
    }
    .auth-brand-panel {
        width: 36% !important;
        flex-shrink: 0;
        padding: 16px 24px !important;
        border-radius: 0 !important;
        min-height: 0 !important;
        justify-content: center;
        align-items: center;
    }
    /* Restore wave layers hidden by tablet/mobile queries */
    .wave-layer {
        display: block !important;
    }
    .brand-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px;
        width: auto;
        max-width: 180px;
        text-align: center;
    }
    .brand-welcome {
        display: none;
    }
    .brand-logo-wrap {
        padding: 6px 12px;
        margin-bottom: 0;
    }
    .brand-logo {
        height: 85px !important;
    }
    .brand-name-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-description {
        display: none;
    }
    .brand-footer {
        display: none;
    }
    /* Form panel */
    .auth-form-panel {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 24px !important;
        margin-top: 0 !important;
        background: var(--bg-color);
        overflow-y: auto;
    }
    .auth-form-wrapper {
        width: 100%;
        max-width: 400px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--card-bg);
        border-radius: 16px;
        padding: 14px 20px 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin-top: 0 !important;
    }
    .auth-form-header {
        margin-bottom: 10px;
    }
    .auth-form-header h2 {
        font-size: 1rem;
    }
    .form-group {
        margin-bottom: 5px;
    }
    .form-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    .form-input {
        height: 32px !important;
        font-size: 0.8rem;
    }
    .iti__selected-flag {
        height: 32px !important;
    }
    .btn-signin {
        height: 32px !important;
        font-size: 0.8rem;
        margin-top: 2px;
    }
    .btn-social {
        height: 32px !important;
        font-size: 0.8rem;
    }
    .form-options {
        margin-bottom: 8px;
    }
    .custom-checkbox {
        font-size: 0.7rem;
    }
    .auth-divider {
        margin: 5px 0;
    }
    .social-buttons {
        gap: 5px;
    }
    .auth-footer {
        margin-top: 6px;
        font-size: 0.7rem;
    }
    .powered-badge {
        font-size: 0.65rem;
        bottom: 10px;
    }
    .powered-badge strong {
        font-size: 0.68rem;
    }
    .mobile-footer-links {
        display: none !important;
    }
}