-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.css
More file actions
274 lines (227 loc) · 5.67 KB
/
Copy pathSignUp.css
File metadata and controls
274 lines (227 loc) · 5.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9; /* Light background color */
}
header {
background-color: #4a90e2; /* Header background color */
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
}
.logo {
font-size: 24px;
font-weight: bold;
margin-right: 20px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-between;
}
nav ul li {
display: inline;
margin-right: 15px;
color: #ffffff;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
border-bottom: 2px solid transparent;
transition: border-color 0.2s ease;
}
a {
text-decoration: none;
color: white;
}
nav ul li a:active, nav ul li a:focus {
border-bottom: 2px solid #fff; /* Underline on hover */
}
main {
max-width: 800px; /* Increased max width for the main container */
margin: 2rem auto; /* Centering the main section */
padding: 2rem;
background-color: #ffffff; /* White background for the form */
box-shadow: 0 2px 10px #4a90e2; /* Subtle shadow effect */
border-radius: 8px; /* Rounded corners */
display: flex; /* Use flexbox for main content */
margin-bottom: 3rem;
}
.left-container {
flex: 1; /* Take up available space on the left */
margin-right: 2rem; /* Space between left and right containers */
}
.right-container {
flex: 1; /* Take up available space on the right */
}
h1 {
color: #333; /* Main title color */
text-align: left; /* Align text to the left */
}
h2 {
color: #4a90e2; /* Subtitle color */
text-align: center;
}
form {
display: flex;
flex-direction: column; /* Stack inputs vertically */
position: relative;
}
input {
margin-bottom: 1rem; /* Space between inputs */
padding: 0.8rem; /* Padding inside inputs */
border: 1px solid #ccc; /* Border style */
border-radius: 4px; /* Rounded corners */
font-size: 1rem; /* Font size for inputs */
padding-right: 1rem;
}
input:focus {
border-color: #4a90e2; /* Change border color on focus */
outline: none; /* Remove default outline */
}
button {
padding:0.8rem;
border: none; /* Remove default button border */
background-color: #4a90e2; /* Button background color */
color: white; /* Button text color */
cursor: pointer; /* Pointer cursor on hover */
font-size: 1rem; /* Font size for button */
border-radius: 4px; /* Rounded corners */
margin-bottom: 10px;
}
button:hover {
background-color: #3e79c1; /* Darker shade on hover */
}
#toggle-password-icon {
cursor: pointer;
font-size: 20px;
color: #4a90e2;
position: absolute;
top: 68%;
right: 10px;
transform: translateY(-50%);
z-index: 1;
padding-left: 10px;
}
footer {
text-align: center;
padding: 1rem;
background-color: #4a90e2; /* Footer background color */
color: white; /* Footer text color */
position: relative; /* Positioning context for footer */
bottom: 0;
width: 100%; /* Full width for footer */
}
footer {
background-color: #4a90e2;
color: white;
padding: 0.5rem; /* Reduced padding */
text-align: center;
position: relative;
bottom: 0;
}
footer .container {
display: flex;
flex-direction: row; /* Changed from column to row */
justify-content: space-between;
align-items: center;
padding: 0; /* Removed padding */
margin: 0;
}
footer .container div {
padding: 0 1rem; /* Added padding */
}
footer ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 0;
}
footer li {
margin: 0 1rem;
list-style: none;
}
footer svg {
width: 20px; /* Reduced icon size */
height: 20px;
fill: #ffffff;
}
@media screen and (max-width: 768px) {
nav ul {
flex-direction: column;
}
nav ul li {
margin-bottom: 10px;
}
footer .container {
flex-direction: column;
align-items: center;
}
img {
display: none;
}
}
.info-text {
display: none; /* Hide by default */
margin-top: 1rem; /* Space between the heading and paragraph */
color: #666; /* Text color */
font-size: 1rem; /* Font size */
}
@media (min-width: 768px) {
img {
width: 300px;
border-radius: 10px;
box-shadow: 0 2px 10px #4a90e2; /* Subtle shadow effect */
}
div#Button {
display: flex;
justify-content: space-between;
}
}
@media (min-width: 600px) {
.info-text {
display: block; /* Show when the screen is wide enough */
}
}
@media (min-width: 600px) and (max-width: 767px) {
div#Button {
display: flex;
justify-content: space-between;
flex-direction: column
}
}
/* Responsive design */
@media (max-width: 600px) {
main {
flex-direction: column; /* Stack items vertically on smaller screens */
padding: 1rem;
}
nav ul {
text-align: right;
display: block;
}
nav ul li {
display: block; /* Stack navigation items vertically on smaller screens */
margin-bottom: 10px;
}
div#Button {
display: flex;
justify-content: space-between;
}
}
@media (min-width: 600px) and (max-width: 767px) {
#toggle-password-icon {
top: 58%;
}
}
@media (max-width: 600px) {
main {
margin: 2rem;
}
}