From 6eca78af4a2a5b3e4f70a842bdd2a65948425d61 Mon Sep 17 00:00:00 2001 From: siddhiavhad27 Date: Tue, 7 Apr 2026 17:18:01 +0000 Subject: [PATCH] Add style.css --- style.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..a5ef020 --- /dev/null +++ b/style.css @@ -0,0 +1,35 @@ +body { + font-family: Arial, sans-serif; + background-color: #eef2f7; + text-align: center; + margin-top: 100px; +} + +.container { + background-color: white; + padding: 30px; + width: 320px; + margin: auto; + border-radius: 10px; + box-shadow: 0px 4px 10px rgba(0,0,0,0.1); +} + +input { + padding: 10px; + width: 80%; + font-size: 16px; +} + +button { + padding: 10px 20px; + font-size: 16px; + background-color: #28a745; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +button:hover { + background-color: #1e7e34; +} \ No newline at end of file