/* Settings Page Styles */

.form-success {
    color: #22c55e;
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: center;
    margin: 12px 0;
}

/* Field hint text */
.field-hint {
    color: var(--text-light, #999);
    font-size: 0.8125rem;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Email verification info */
.email-verify-info {
    color: var(--accent-blue, #4a9fd8);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(74, 159, 216, 0.08);
    border: 1px solid rgba(74, 159, 216, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0 0 16px;
}

/* Re-Auth Overlay */
.reauth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reauth-dialog {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.reauth-dialog h3 {
    color: var(--primary-dark, #1a3a5c);
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.reauth-dialog p {
    color: var(--text-light, #666);
    margin: 0 0 16px;
    font-size: 0.9375rem;
}

.reauth-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.reauth-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
}
