/* ---- Auth Page ---- */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xl);
    background: var(--bg-primary);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.auth-card__logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.auth-card__logo img {
    height: 40px;
    width: auto;
}

.auth-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xs);
}

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

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.auth-form__error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: #EF4444;
    font-size: var(--text-sm);
    text-align: center;
}

.auth-toggle {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.auth-toggle__link {
    color: var(--brand-purple);
    cursor: pointer;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.auth-toggle__link:hover {
    color: var(--brand-magenta);
}

.auth-confirmation {
    text-align: center;
    padding: var(--space-xl);
}

.auth-confirmation__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--accent-green);
}

.auth-confirmation__title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.auth-confirmation__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}
