/* Auth pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); }

.auth-container { width: 100%; max-width: 440px; padding: 1.5rem; }

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

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 2rem;
}

.auth-card h2 { text-align: center; margin-bottom: 0.375rem; font-size: 1.5rem; }
.auth-subtitle { text-align: center; color: var(--text-light); margin-bottom: 2rem; font-size: 0.9375rem; }

.auth-form { margin-bottom: 1.5rem; }
.auth-form .form-group { margin-bottom: 1rem; }

.form-group--inline { display: flex; justify-content: flex-end; }

.auth-link { font-size: 0.875rem; color: var(--primary); }
.auth-link:hover { text-decoration: underline; }

.auth-footer { text-align: center; font-size: 0.875rem; color: var(--text-light); }
.auth-footer a { color: var(--primary); font-weight: 600; }

@media (max-width: 480px) {
    .auth-card { padding: 1.5rem; }
}
