/* Konto-sider: login, opret, glemt/nulstil password */

.auth-wrap {
    max-width: 440px;
    margin-inline: auto;
    padding-block: var(--space-8);
}
.auth-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-7);
}
.auth-card h1 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.auth-card > p.subtitle { color: var(--color-text-muted); margin-bottom: var(--space-6); }
.auth-switch { text-align: center; margin-top: var(--space-5); font-size: var(--fs-body-sm); color: var(--color-text-muted); }
.auth-switch a { font-weight: 700; color: var(--color-accent); }

.guest-banner {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-accent-soft);
    color: var(--color-accent-hover);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--fs-body-sm);
    margin-bottom: var(--space-5);
}
