From afac80382189222afbbe12b74ab6bfaa92822d2b Mon Sep 17 00:00:00 2001 From: Ananya Gupta <145869907+ananyag309@users.noreply.github.com> Date: Sat, 12 Oct 2024 00:39:10 +0530 Subject: [PATCH 1/2] Update signup.css --- SignUp/signup.css | 90 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 1 deletion(-) diff --git a/SignUp/signup.css b/SignUp/signup.css index 18c0f8d8..562e3578 100644 --- a/SignUp/signup.css +++ b/SignUp/signup.css @@ -257,4 +257,92 @@ a { text-shadow: none; font-family: 'Trebuchet MS', Arial, sans-serif; -} \ No newline at end of file +} + +/* ... existing styles ... */ + +.signup-button, .google-signup-button { + width: 100%; + padding: 10px; + margin: 10px 0; + border: none; + border-radius: 5px; + cursor: pointer; + font-size: 16px; + transition: background-color 0.3s ease; +} + +.signup-button { + background-color: #f4a261; + color: white; +} + +.signup-button:hover { + background-color: #e76f51; +} + +.google-signup-button { + background-color: white; + color: #757575; + border: 1px solid #dadce0; + display: flex; + align-items: center; + justify-content: center; +} + +.google-signup-button:hover { + background-color: #f8f9fa; +} + +.google-signup-button img { + width: 18px; + height: 18px; + margin-right: 10px; +} + +.or-divider { + text-align: center; + margin: 20px 0; + color: #757575; + position: relative; + overflow: hidden; +} + +.or-divider::before, +.or-divider::after { + content: ""; + position: absolute; + top: 50%; + width: 45%; + height: 1px; + background-color: #dadce0; +} + +.or-divider::before { + left: 0; +} + +.or-divider::after { + right: 0; +} + +.or-divider span { + display: inline-block; + position: relative; + padding: 0 10px; + background-color: #000; /* Match this with your form background color */ +} + +.links { + text-align: center; + margin-top: 20px; +} + +.links a { + color: #e76f51; + text-decoration: none; +} + +.links a:hover { + text-decoration: underline; +} From e93893533e5275095bc403271b747f3e086d99aa Mon Sep 17 00:00:00 2001 From: Ananya Gupta <145869907+ananyag309@users.noreply.github.com> Date: Sat, 12 Oct 2024 00:39:34 +0530 Subject: [PATCH 2/2] Update signup.html --- SignUp/signup.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/SignUp/signup.html b/SignUp/signup.html index 2e5c4029..99f3d935 100644 --- a/SignUp/signup.html +++ b/SignUp/signup.html @@ -34,11 +34,19 @@