.mfa-page {
    font-family: "Inter", "Open Sans", system-ui, sans-serif;
    padding: 48px 16px 64px;
    display: flex;
    justify-content: center;
}

.mfa-card {
    width: 100%;
    max-width: 720px;
    background: #f6f6f4;
    padding: 36px 44px 40px;
    border-radius: 4px;
    box-sizing: border-box;
}

.mfa-card h1 {
    color: #0a8c8c;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 14px 0;
    line-height: 1.15;
}

.mfa-card .mfa-lead {
    font-size: 13.5px;
    color: #5b6b6b;
    margin: 0 0 22px 0;
    line-height: 1.5;
}

.mfa-code-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #e7ebeb;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    background: #fff;
    color: #1f2a2a;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.mfa-code-input:focus {
    border-color: #0a8c8c;
    box-shadow: 0 0 0 3px rgba(10, 140, 140, 0.15);
}

.mfa-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.mfa-trust-label {
    font-size: 14px;
    color: #1f2a2a;
}

.mfa-trust-row input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.mfa-trust-desc {
    font-size: 12px;
    color: #5b6b6b;
    margin-top: 6px;
    line-height: 1.4;
}

.mfa-verify-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    background: #0a8c8c;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    border-radius: 0;
    transition: background 0.15s;
}

.mfa-verify-btn:hover {
    background: #076d6d;
}

.mfa-actions {
    margin-top: 22px;
    font-size: 13px;
    color: #1f2a2a;
}

.mfa-resend-link {
    background: none;
    border: none;
    padding: 0;
    color: #1f2a2a;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mfa-actions-separator {
    margin: 0 10px;
    color: #5b6b6b;
}

.mfa-cancel-link {
    color: #1f2a2a;
    text-decoration: underline;
}

.mfa-validation-error {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #d23f3f;
}

.mfa-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 13.5px;
}

.mfa-alert-success {
    background: rgba(10, 140, 140, 0.08);
    color: #076d6d;
    border: 1px solid rgba(10, 140, 140, 0.20);
}

.mfa-alert-danger {
    background: rgba(210, 63, 63, 0.08);
    color: #b53232;
    border: 1px solid rgba(210, 63, 63, 0.20);
}
