From 10b64239e18d32858d7ccd3f3faf9bc18f9802e5 Mon Sep 17 00:00:00 2001 From: sarthakt7111-cell Date: Tue, 13 Jan 2026 13:35:08 +0530 Subject: [PATCH 1/2] Enhance login form with age input field Added age input field to the login form. --- index.html | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index e7f19c6..2011b91 100644 --- a/index.html +++ b/index.html @@ -7,15 +7,22 @@ - -
+ +

+ + + +

+

+ +
- \ No newline at end of file + From 1a3a25f33469deb146f293a4c9ee962cbe38156a Mon Sep 17 00:00:00 2001 From: sarthakt7111-cell Date: Tue, 13 Jan 2026 13:35:22 +0530 Subject: [PATCH 2/2] Update style.css --- style.css | 55 +++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 43 insertions(+), 12 deletions(-) diff --git a/style.css b/style.css index 9c9ac66..b630430 100644 --- a/style.css +++ b/style.css @@ -1,14 +1,45 @@ -form{ - margin: 0 auto; - max-width: 500px; - text-align: center; +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + + body{ +font-family: Arial, sans-serif; +background-color: #f2f2f2; +display: flex; +justify-content: center; +align-items: center; +height: 100vh; +width: 100vw; + } + form{ +background-color: #ffffff; +padding: 25px; +border-radius: 8px; +width: 300px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + } + label{ + font-family: Bbold; + } +input{ +padding: 8px; +margin-top: 5px; +margin-bottom: 15px; +border-radius: 4px; +border: 1px solid #ccc; } - -body{ - display: flex; - justify-content: center; - align-items: center; - height: 100vh; -body { - background-color: lightblue; +button { +width: 100%; +padding: 10px; +background-color: #007bff; +color: white; +border: none; +border-radius: 4px; +cursor: pointer; +font-size: 16px; +} +button:hover { + background-color: #0056b3; }