Index: frontend/src/Login.tsx
===================================================================
--- frontend/src/Login.tsx	(revision 4022db101cfab639a8f41419782d6190042bf0dd)
+++ frontend/src/Login.tsx	(revision 3727852b5e0f31eb857eab69ab7d5090fa06bcad)
@@ -3,5 +3,5 @@
 import axiosInstance, { scheduleTokenRefresh } from "./api/axiosInstance";
 import { useAuth } from "./context/authContext";
-import type { UserResponse } from "./types";
+import type { User } from "./types";
 
 const Login = () => {
@@ -16,5 +16,5 @@
 		try {
 			const response = await axiosInstance.post<{
-				user: UserResponse;
+				user: User;
 				tokenExpiresIn: number;
 			}>("/auth/login", { username, password });
@@ -65,5 +65,5 @@
 				<button
 					type="submit"
-					className="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors duration-200 w-full"
+					className="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors duration-200 w-full cursor-pointer"
 				>
 					Login
