diff --git a/app/src/routes/login/+page.svelte b/app/src/routes/login/+page.svelte index 97aedee..e0a373f 100644 --- a/app/src/routes/login/+page.svelte +++ b/app/src/routes/login/+page.svelte @@ -53,20 +53,24 @@ width: 100%; max-width: 400px; } + .login-container h1 { font-size: 2em; color: #202020; margin-bottom: 20px; text-align: center; } + .form-group { margin-bottom: 15px; } + .form-group label { display: block; color: #606060; margin-bottom: 5px; } + .form-group input { width: 100%; padding: 15px; @@ -75,6 +79,7 @@ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); font-size: 16px; } + button { background-color: #0078d4; color: white; @@ -87,6 +92,7 @@ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: background-color 0.3s; } + button:hover { background-color: #005ea6; }