/* Shared look for standalone auth pages: login, Forgot, VerifyOTP, Credential */

body.ds-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ds-primary), var(--ds-primary-dark));
    padding: var(--ds-space-3);
}

.ds-auth-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: var(--ds-surface);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow);
    padding: var(--ds-space-4);
}

.ds-auth-card h1 {
    font-size: 1.1rem;
    color: var(--ds-primary-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--ds-space-1);
}

.ds-auth-card h2 {
    font-size: 1rem;
    text-align: center;
    color: var(--ds-muted);
    margin-bottom: var(--ds-space-4);
    font-weight: 400;
}

.ds-auth-card .ds-error {
    color: #c0392b;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-bottom: var(--ds-space-2);
}

.ds-auth-card .btn {
    width: 100%;
}
