When the browser autofills the password on the MFA PasswordStep (verify + dashboard), the field turns light-blue/black because PasswordStep lacks the input:-webkit-autofill override that LoginPage already has. (The dashboard login screen + theme.ts have the fix; the MFA password step does not pick it up in all cases.)
Evidence (origin/main): src/features/auth/components/steps/PasswordStep.tsx styles .MuiOutlinedInput-root only, no :-webkit-autofill override (~lines 157-160). User-reported (USER_FINDINGS_2026-06-03 #12).
Fix: add the :-webkit-autofill background/box-shadow override globally in theme.ts MuiCssBaseline so it covers verify + MFA password. (Display-only.)
Source: MASTER_GAP_REGISTER §8 B4, re-verified on origin/main 2026-06-13.
When the browser autofills the password on the MFA
PasswordStep(verify + dashboard), the field turns light-blue/black because PasswordStep lacks theinput:-webkit-autofilloverride that LoginPage already has. (The dashboard login screen + theme.ts have the fix; the MFA password step does not pick it up in all cases.)Evidence (origin/main):
src/features/auth/components/steps/PasswordStep.tsxstyles.MuiOutlinedInput-rootonly, no:-webkit-autofilloverride (~lines 157-160). User-reported (USER_FINDINGS_2026-06-03 #12).Fix: add the
:-webkit-autofillbackground/box-shadow override globally intheme.tsMuiCssBaseline so it covers verify + MFA password. (Display-only.)Source: MASTER_GAP_REGISTER §8 B4, re-verified on origin/main 2026-06-13.