/* ===== PREMIUM AUTH STYLES ===== */

.auth-body {
    background: var(--bg-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 98, 255, 0.08);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 440px;
    padding: 48px;
    position: relative;
}

.auth-card .logo {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

.auth-card .logo span { color: var(--primary); }

.auth-card h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.auth-card .auth-sub {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-back {
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.auth-back:hover { color: var(--primary); }

.auth-msg {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
}

.auth-msg.error { background: #fff2f0; color: var(--red); border: 1px solid rgba(255, 61, 0, 0.1); }
.auth-msg.success { background: #e6f9ef; color: var(--green); border: 1px solid rgba(0, 200, 83, 0.1); }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

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

.divider span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google:hover { background: #f8f9fd; border-color: var(--primary); }

.auth-switch {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-dim);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
