diff --git a/packages/web/components/templates/ConfirmProfileModal.tsx b/packages/web/components/templates/ConfirmProfileModal.tsx
index 6c36c580a..72a939947 100644
--- a/packages/web/components/templates/ConfirmProfileModal.tsx
+++ b/packages/web/components/templates/ConfirmProfileModal.tsx
@@ -139,7 +139,7 @@ export function ConfirmProfileModal(): JSX.Element {
{isUsernameValid && (
Username is available.
diff --git a/packages/web/components/templates/auth/EmailForgotPassword.tsx b/packages/web/components/templates/auth/EmailForgotPassword.tsx
index 888cee302..11867cce5 100644
--- a/packages/web/components/templates/auth/EmailForgotPassword.tsx
+++ b/packages/web/components/templates/auth/EmailForgotPassword.tsx
@@ -51,7 +51,7 @@ export function EmailForgotPassword(): JSX.Element {
name="email"
value={email}
placeholder="Email"
- css={{ bg: 'white '}}
+ css={{ bg: 'white', color: 'black' }}
onChange={(e) => { e.preventDefault(); setEmail(e.target.value); }}
/>
diff --git a/packages/web/components/templates/auth/EmailLogin.tsx b/packages/web/components/templates/auth/EmailLogin.tsx
index 63541f4e0..ced660e4d 100644
--- a/packages/web/components/templates/auth/EmailLogin.tsx
+++ b/packages/web/components/templates/auth/EmailLogin.tsx
@@ -55,7 +55,7 @@ export function EmailLogin(): JSX.Element {
name="email"
value={email}
placeholder="Email"
- css={{ bg: 'white '}}
+ css={{ backgroundColor: 'white', color: 'black' }}
onChange={(e) => { e.preventDefault(); setEmail(e.target.value); }}
/>
@@ -68,7 +68,7 @@ export function EmailLogin(): JSX.Element {
name="password"
value={password}
placeholder="Password"
- css={{ bg: 'white '}}
+ css={{ bg: 'white', color: 'black' }}
onChange={(e) => setPassword(e.target.value)}
/>
diff --git a/packages/web/components/templates/auth/EmailResetPassword.tsx b/packages/web/components/templates/auth/EmailResetPassword.tsx
index 67d97ead8..e58dbbf75 100644
--- a/packages/web/components/templates/auth/EmailResetPassword.tsx
+++ b/packages/web/components/templates/auth/EmailResetPassword.tsx
@@ -61,7 +61,7 @@ export function EmailResetPassword(): JSX.Element {
name="password"
value={password}
placeholder="Password"
- css={{ bg: 'white '}}
+ css={{ bg: 'white', color: 'black' }}
onChange={(e) => { e.preventDefault(); setPassword(e.target.value); }}
/>
(Password must be at least 8 chars)
diff --git a/packages/web/components/templates/auth/EmailSignup.tsx b/packages/web/components/templates/auth/EmailSignup.tsx
index 3139b3b74..9a8a9b9c5 100644
--- a/packages/web/components/templates/auth/EmailSignup.tsx
+++ b/packages/web/components/templates/auth/EmailSignup.tsx
@@ -63,7 +63,7 @@ export function EmailSignup(): JSX.Element {
return (