diff --git a/frontend/src/components/LoginCard.tsx b/frontend/src/components/LoginCard.tsx
index 9e79513..7ce9e0c 100644
--- a/frontend/src/components/LoginCard.tsx
+++ b/frontend/src/components/LoginCard.tsx
@@ -35,36 +35,60 @@ export const LoginCard = () => {
});
return (
- <>
-
- {(field) => (
- field.handleChange(e.target.value)}
- placeholder={t("username")}
- />
- )}
-
-
- {(field) => (
- field.handleChange(e.target.value)}
- placeholder={t("password")}
- />
- )}
-
-
-
- >
+
+
+
+
+
+ Stockhome
+
+
+ {t("login")}
+
+
+
+ {(field) => (
+ field.handleChange(e.target.value)}
+ placeholder={t("username")}
+ variant="outlined"
+ size="lg"
+ className="rounded-2xl bg-white/90 shadow-[0_10px_24px_rgba(15,23,42,0.08)]"
+ />
+ )}
+
+
+ {(field) => (
+ field.handleChange(e.target.value)}
+ placeholder={t("password")}
+ variant="outlined"
+ size="lg"
+ className="rounded-2xl bg-white/90 shadow-[0_10px_24px_rgba(15,23,42,0.08)]"
+ />
+ )}
+
+
+
+
+
+
);
};