/* Auth */
.auth-body {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ede9fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-logo {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.auth-header h1 { font-size: 1.4rem; }

.auth-card .form-group { margin-bottom: 1.25rem; }

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.auth-footer p { font-size: 0.9rem; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 700; }
