.auth-body {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d1b4e 100%);
    min-height: 100vh;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-logo {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--color-white);
}

.auth-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.auth-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.auth-form {
    margin-bottom: 16px;
}

.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.auth-footer-note {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.auth-card-dark {
    background: linear-gradient(180deg, #1a1a22 0%, #121218 100%);
    color: #fff;
    max-width: 520px;
}

.auth-card-dark .register-headline {
    text-align: center;
}

.auth-card-dark .register-teaser {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.auth-card-dark .register-quick-legal {
    color: rgba(255, 255, 255, 0.88);
}

.auth-wrapper .auth-card-dark {
    padding: 32px 28px;
}

.auth-wrapper .alert {
    width: 100%;
    max-width: 520px;
    margin: 0 0 16px;
}
