From 2856e5da210337b1533e84c729766ca33f402b71 Mon Sep 17 00:00:00 2001 From: ARJUN AGARWAL <123585663+sahhoArjun097@users.noreply.github.com> Date: Sun, 13 Oct 2024 17:36:36 +0530 Subject: [PATCH] added signup --- index.html | 91 ++++++++++++++++++++++++++++++++++----------------- register.html | 57 ++++++++++++++++---------------- styles.css | 79 +++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 167 insertions(+), 60 deletions(-) diff --git a/index.html b/index.html index d095baa..8a27377 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@

Waste Management

- + @@ -175,24 +175,24 @@

Discover Our Features

-
- - - + + + +
-
-
- -
-

Eco-Friendly Tips

-
- Did you know only 9% of all plastic ever produced has been - recycled? -
-

Make a difference by embracing eco-friendly practices from home. Learn tips to help manage - waste efficiently and reduce your environmental impact.

- Get Tips! +
+
+
+

Eco-Friendly Tips

+
+ Did you know only 9% of all plastic ever produced has been + recycled? +
+

Make a difference by embracing eco-friendly practices from home. Learn tips to help manage + waste efficiently and reduce your environmental impact.

+ Get Tips! +
@@ -202,12 +202,12 @@

Eco-Friendly Tips

Real-time Monitoring

Keep track of your waste management activities instantly, with up-to-the-minute updates.

- -
-

Community Engagement

-

Join community efforts to promote effective waste management.

- Join Community -
+ +
+

Community Engagement

+

Join community efforts to promote effective waste management.

+ Join Community +
@@ -352,6 +352,36 @@

Responsibility

+ +
+
+

SIGN UP

+
+
+ + +
+
+ + +
+
+ + +
+
+ +

Have an Account? Login Here!

+ +
+ + +
+
+ +
+ @@ -399,12 +430,12 @@

Our Commitment to Sustainability

- -

© 2024 Waste Management. All rights reserved.

+ +

© 2024 Waste Management. All rights reserved.

- + - + diff --git a/register.html b/register.html index 0967a99..313901f 100644 --- a/register.html +++ b/register.html @@ -129,36 +129,35 @@
-
-
- - -
-
- - - - - - - - - -
-
-
- - - - - + +
+
+

SIGN UP

+ +
+ + +
+
+ + +
+
+ + +
+
+ +

Have an Account? Login Here!

+ +
+ + -
- -
-
+
+ +
diff --git a/styles.css b/styles.css index 3e6ce6e..8dbcb21 100644 --- a/styles.css +++ b/styles.css @@ -1784,4 +1784,81 @@ footer.dark-mode { cursor: pointer; user-select: none; } - \ No newline at end of file + + + +.container { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + text-align: center; +} + +.form_area { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + background-color: #eaf9e7; + height: auto; + width: auto; + border: 2px solid #264143; + border-radius: 20px; + box-shadow: 3px 4px 0px 1px #f7faf7; +} + +.title { + color: #418270; + font-weight: 900; + font-size: 1.5em; + margin-top: 20px; +} + +.sub_title { + font-weight: 600; + margin: 5px 0; +} + +.form_group { + display: flex; + flex-direction: column; + align-items: baseline; + margin: 10px; +} + +.form_style { + outline: none; + border: 2px solid #264143; + box-shadow: 3px 4px 0px 1px #94cf3a; + width: 420px; + padding: 20px; + border-radius: 4px; + font-size: 15px; +} + +.form_style:focus, .btn:focus { + transform: translateY(4px); + box-shadow: 1px 2px 0px 0px #bfe98c; +} + +.btn { + padding: 15px; + margin: 25px 0px; + width: 290px; + font-size: 15px; + background: #DE5499; + border-radius: 10px; + font-weight: 800; + box-shadow: 3px 3px 0px 0px #E99F4C; +} + +.btn:hover { + opacity: .9; +} + +.link { + font-weight: 800; + color: #264143; + padding: 5px; +} \ No newline at end of file