diff --git a/style.css b/style.css index 9c9ac66..0ec27fb 100644 --- a/style.css +++ b/style.css @@ -1,14 +1,53 @@ -form{ - margin: 0 auto; - max-width: 500px; - text-align: center; +body { + margin: 0; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background-color: #f2f2f2; + font-family: Arial, sans-serif; } -body{ - display: flex; - justify-content: center; - align-items: center; - height: 100vh; -body { - background-color: lightblue; +.login-form { + background-color: white; + padding: 20px; + width: 300px; + border-radius: 5px; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); +} + +.login-form h2 { + text-align: center; + margin-bottom: 15px; +} + +.input-group { + margin-bottom: 10px; +} + +label { + display: block; + margin-bottom: 4px; + font-size: 14px; +} + +input { + width: 100%; + padding: 6px; + border: 1px solid #ccc; + border-radius: 3px; +} + +button { + width: 100%; + padding: 8px; + background-color: #4a6cf7; + color: white; + border: none; + border-radius: 3px; + cursor: pointer; +} + +button:hover { + background-color: #3a5ce5; }