.auth-body {
    background: var(--bg-muted);
    min-height: 100vh;
}

.auth-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

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

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

.auth-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.auth-card h1 {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xl);
}

.auth-form {
    margin-bottom: var(--space-lg);
}

.auth-form .form-row {
    gap: var(--space-md);
}

.auth-switch {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.auth-switch a {
    font-weight: 600;
}
