/**
 * Pozitif Ekip Hub - Giriş Ekranı (Auth Gate) Stilleri
 * Koyu Antrasit Arka Plan + Şık Beyaz Giriş Kartı
 */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.auth-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
    padding: 32px 28px;
    animation: authCardIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authCardIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-brand {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo-box {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(253, 54, 110, 0.35);
}

.auth-brand h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.auth-brand p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.auth-error {
    background: var(--danger-light);
    border: 1px solid var(--danger-border);
    color: var(--danger);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 11.5px;
    margin-bottom: 14px;
    display: none;
}

.auth-footer-note {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--text-faint);
}
