/* ================================================
   Shared account / auth status page styles.
   Used by: ConfirmEmail, RegisterConfirmation,
   ResetPasswordConfirmation, ConfirmEmailChange,
   ResendEmailConfirmation
   ================================================ */

body {
    background: #f9fafb;
}

/* ── Top bar ──────────────────────────────────── */
.acct-topbar {
    max-width: 1240px;
    margin: 28px auto 10px;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.acct-brand img {
    height: 40px;
    width: auto;
}

/* ── Shell wrapper ────────────────────────────── */
.acct-shell {
    max-width: 1240px;
    margin: 25px auto 80px;
    padding: 0 40px;
}

/* ── Card ─────────────────────────────────────── */
.acct-card {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    padding: 48px 54px 40px;
    text-align: center;
}

.acct-card--narrow {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Status icon circle ───────────────────────── */
.acct-status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.acct-status-icon--success { background: #d1fae5; color: #065f46; }
.acct-status-icon--info    { background: #dbeafe; color: #1e40af; }
.acct-status-icon--warning { background: #fef3c7; color: #92400e; }
.acct-status-icon--danger  { background: #fee2e2; color: #991b1b; } /* New danger icon variant */

/* ── Card typography ──────────────────────────── */
.acct-status-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.acct-status-body {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer legal text ────────────────────────── */
.acct-footer-legal {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #888;
}

/* ── Page illustration image ──────────────────── */
.acct-page-image {
    display: block;
    max-width: 100%;
    max-height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

/* ── Form controls ────────────────────────────── */
.acct-form-control {
    height: 48px;
    font-size: 16px;
}

.acct-form-submit {
    height: 48px;
    font-size: 16px;
    font-weight: 500;
}

/* ── Back / secondary links ───────────────────── */
.acct-back-link {
    font-size: 15px;
}

/* ── OAuth provider buttons (Login) ──────────── */
.acct-oauth-btn {
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-color: #ddd !important;
}

/* ── "or" divider (Login) ─────────────────────── */
.acct-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
}

.acct-or-divider hr {
    flex: 1;
    border-top: 1px solid #eee;
    margin: 0;
}

.acct-or-divider span {
    color: #aaa;
    font-size: 14px;
}

/* ── Hint text (15px secondary copy) ─────────── */
.acct-hint {
    font-size: 15px;
}

/* ── Help / support text (14px) ──────────────── */
.acct-help-text {
    font-size: 14px;
    color: #666;
}

/* ── Wizard progress bar (ThankYou) ──────────── */
.acct-wizard-progress {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 220px;
}

.acct-step-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #4b5563;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.acct-progress-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    width: 150px;
}

.acct-progress-fill {
    background: #1fa463;
    height: 100%;
    transition: width .45s ease;
}