diff --git a/components/brave_wallet_ui/components/desktop/popup-modals/add-account-modal/index.tsx b/components/brave_wallet_ui/components/desktop/popup-modals/add-account-modal/index.tsx
index 9845bb1cdf70..2e896a46c4a5 100644
--- a/components/brave_wallet_ui/components/desktop/popup-modals/add-account-modal/index.tsx
+++ b/components/brave_wallet_ui/components/desktop/popup-modals/add-account-modal/index.tsx
@@ -273,6 +273,7 @@ const AddAccountModal = (props: Props) => {
onChange={handlePrivateKeyChanged}
type='password'
autoFocus={true}
+ autoComplete='off'
/>
) : (
<>
diff --git a/components/brave_wallet_ui/components/desktop/wallet-onboarding/restore/index.tsx b/components/brave_wallet_ui/components/desktop/wallet-onboarding/restore/index.tsx
index fa8023e8d558..8dccfd93fc9f 100644
--- a/components/brave_wallet_ui/components/desktop/wallet-onboarding/restore/index.tsx
+++ b/components/brave_wallet_ui/components/desktop/wallet-onboarding/restore/index.tsx
@@ -135,6 +135,7 @@ function OnboardingRestore (props: Props) {
onChange={handleRecoveryPhraseChanged}
value={recoveryPhrase}
type={showRecoveryPhrase ? 'text' : 'password'}
+ autoComplete='off'
/>
{hasRestoreError && {getLocale('braveWalletRestoreError')}}
{recoveryPhrase.split(' ').length === 24 &&
diff --git a/components/brave_wallet_ui/components/shared/password-input/index.tsx b/components/brave_wallet_ui/components/shared/password-input/index.tsx
index 801763a9b6be..58fa547f8312 100644
--- a/components/brave_wallet_ui/components/shared/password-input/index.tsx
+++ b/components/brave_wallet_ui/components/shared/password-input/index.tsx
@@ -44,13 +44,14 @@ function PasswordInput (props: Props) {
onChange={inputPassword}
onKeyDown={onKeyDown}
autoFocus={autoFocus}
+ autoComplete='off'
+ />
+ {showToggleButton &&
+
- {showToggleButton &&
-
- }
+ }
{hasError &&