/* ---------- AUTH PAGES (login, register, forgot/reset password, dll) ---------- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--color-bg);
}

.auth-wrap {
    width: 100%;
    max-width: 380px;
}

.auth-brand {
    text-align: center;
    margin-bottom: 20px;
}

.auth-brand h1 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    color: var(--color-text);
}

.auth-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.auth-card h2 {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
}

.auth-card p.auth-desc {
    margin: 0 0 18px;
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
}

.auth-card .settings-form {
    gap: 16px;
}

.auth-card .form-group input {
    width: 100%;
}

.auth-card .btn-primary,
.auth-card .btn-secondary {
    width: 100%;
    align-self: stretch;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    margin: -4px 0 4px;
}

.auth-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    cursor: pointer;
}

.auth-link {
    font-size: 12px;
    color: var(--color-blue);
    text-decoration: underline;
}

.auth-footer-note {
    margin: 18px 0 0;
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
}

.auth-footer-note a {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 600;
}

.auth-status-success {
    background: var(--color-green-light);
    color: var(--color-green);
    border: 1px solid #c9ecd4;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}
