.auth-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: var(--bg);
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
}

.auth-card__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
}

.auth-card__title span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.4rem;
}

.auth-card__subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.auth-field { margin-bottom: 1rem; }

.auth-field input {
    width: 100%;
    padding: 11px 16px;
    border: none;
    border-bottom: 1px solid var(--surface-2);
    border-radius: 0;
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-interactive);
}

.auth-field input::placeholder { color: var(--text-tertiary); }
.auth-field input:focus { border-bottom: 2px solid var(--border-strong); outline: 2px solid var(--border-strong); outline-offset: -2px; }

.auth-field__error {
    color: var(--error);
    font-size: 0.78rem;
    margin-top: 0.3rem;
}

.auth-alert {
    background: var(--error-bg);
    border: 1px solid var(--error);
    color: var(--error-text);
    border-radius: 0;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
}

.auth-success {
    background: var(--success-bg);
    border: 1px solid var(--success);
    color: var(--success-text);
    border-radius: 0;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
}

.auth-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-interactive);
    margin-top: 0.5rem;
}

.auth-btn--primary {
    background: var(--accent);
    color: var(--accent-text);
}
.auth-btn--primary:hover { background: var(--accent-hv); color: var(--accent-text); }

.auth-btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
    margin-top: 0.75rem;
}
.auth-btn--ghost:hover { background: var(--border-strong); color: #fff; }

.auth-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0 1rem;
}

.auth-alt-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pending-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    min-height: calc(100vh - 72px);
    background: var(--bg);
}

.pending-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.pending-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.pending-card h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.pending-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
