/* ================================================================
   CultCrit Auth — Login, Register, Verify sayfaları
================================================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 2rem 1.25rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
}
.auth-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 2rem;
    text-decoration: none;
}
.auth-logo .brand-crit { font-family: var(--font-display); font-size: 1.375rem; color: var(--text); }
.auth-logo .brand-dot  { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; align-self: flex-end; margin-left: 2px; }

.auth-title    { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.375rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.auth-field { margin-bottom: 1.125rem; }
.auth-field label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.4rem; }
.auth-field input  { border-radius: var(--radius); }

.auth-otp-input {
    text-align: center;
    font-size: 2rem !important;
    letter-spacing: 0.5rem;
    font-family: var(--font-display);
    font-weight: 400;
}

.auth-footer  { text-align: center; margin-top: 1.375rem; font-size: 0.875rem; color: var(--text-muted); }
.auth-footer a { color: var(--gold); font-weight: 500; }
.auth-footer a:hover { color: var(--gold-dark); }

.auth-divider { text-align: center; color: var(--text-faint); font-size: 0.8rem; margin: 1rem 0; position: relative; }
.auth-divider::before, .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
