diff --git a/client/src/pages/Registration.jsx b/client/src/pages/Registration.jsx
index 0b14b44..dc85b73 100644
--- a/client/src/pages/Registration.jsx
+++ b/client/src/pages/Registration.jsx
@@ -113,7 +113,7 @@ const InputField = ({
value={value || ""}
onChange={onChange}
placeholder={placeholder}
- className={`w-full pl-12 py-3 border border-gray-200 rounded-xl shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent bg-gray-50 focus:bg-white ${
+ className={`w-full pl-12 py-3 border border-gray-200 text-black rounded-xl shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent bg-gray-50 focus:bg-white ${
EndIcon ? "pr-12" : "pr-4"
}`}
{...props}
@@ -306,8 +306,8 @@ export default function Registration() {
}
className={`p-4 rounded-xl border-2 transition-all ${
formData.role === "PARENTS"
- ? "border-blue-500 bg-blue-50"
- : "border-gray-200 hover:border-gray-300"
+ ? "border-blue-500 bg-blue-50 text-blue-400"
+ : "border-gray-200 hover:border-gray-300 text-gray-400"
}`}
>
@@ -320,8 +320,8 @@ export default function Registration() {
}
className={`p-4 rounded-xl border-2 transition-all ${
formData.role === "DOCTOR"
- ? "border-purple-500 bg-purple-50"
- : "border-gray-200 hover:border-gray-300"
+ ? "border-purple-500 bg-purple-50 text-purple-400"
+ : "border-gray-200 hover:border-gray-300 text-gray-400"
}`}
>
diff --git a/client/src/pages/SignIn.jsx b/client/src/pages/SignIn.jsx
index 0e01e1d..6e3e3f6 100644
--- a/client/src/pages/SignIn.jsx
+++ b/client/src/pages/SignIn.jsx
@@ -125,7 +125,7 @@ const InputField = ({
onFocus={onFocus}
onBlur={onBlur}
placeholder={placeholder}
- className={`w-full pl-12 pr-12 py-4 border-2 rounded-xl transition-all duration-300 bg-white ${
+ className={`w-full pl-12 pr-12 py-4 border-2 rounded-xl transition-all duration-300 text-black bg-white ${
error
? "border-red-300 focus:border-red-500 focus:ring-red-500/20"
: isFocused