-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
227 lines (195 loc) · 5.03 KB
/
signup.css
File metadata and controls
227 lines (195 loc) · 5.03 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
body {
margin: 0;
font-family: 'Poppins', sans-serif;
color: #fff;
background: linear-gradient(135deg, #480577, #0d0330, #000000);
background-attachment: fixed;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
background-color: rgba(10, 10, 25, 0.5);
backdrop-filter: blur(5px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo a {
color: #e0e0e0;
text-decoration: none;
font-family: 'Raleway', sans-serif;
font-weight: 700;
font-size: 24px;
transition: color 0.3s ease;
}
.nav-logo a:hover {
color: #ff00ff;
}
.nav-links a {
color: #e0e0e0;
text-decoration: none;
margin-left: 20px;
font-family: 'Raleway', sans-serif;
font-weight: 600;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #ff00ff;
}
.main-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* Center the card */
flex: 1;
padding: 40px 20px;
width: 100%;
box-sizing: border-box;
}
.signup-card {
background-color: rgba(26, 26, 46, 0.9); /* Dark card background, slightly more opaque */
padding: 30px 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
width: 100%;
max-width: 480px; /* Adjusted width for a typical registration form */
border: 1px solid rgba(255, 0, 255, 0.3);
text-align: center;
}
.signup-card h2 {
font-family: 'Raleway', sans-serif;
font-weight: 700;
font-size: 24px;
color: #e0e0e0;
margin-bottom: 25px;
text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}
.signup-form .input-group {
margin-bottom: 18px;
text-align: left; /* Align labels and inputs to the left */
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.signup-form input[type="password"] {
width: calc(100% - 22px); /* Account for padding and border */
padding: 12px 10px;
border-radius: 8px;
border: 1px solid #4a4a6a;
background-color: #101022;
color: #e0e0e0;
font-size: 15px;
font-family: 'Poppins', sans-serif;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form input[type="tel"]:focus,
.signup-form input[type="password"]:focus {
outline: none;
border-color: #ff00ff; /* Neon pink focus */
box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.signup-form input::placeholder {
color: #8888a2;
}
.input-group.terms {
display: flex;
align-items: center;
font-size: 13px;
color: #c0c0e0;
}
.input-group.terms input[type="checkbox"] {
margin-right: 8px;
accent-color: #ff00ff; /* Style checkbox with neon pink */
width: 16px;
height: 16px;
}
.input-group.terms label a {
color: #ff00ff;
text-decoration: none;
}
.input-group.terms label a:hover {
text-decoration: underline;
}
.action-button {
width: 100%;
padding: 12px;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: bold;
font-family: 'Raleway', sans-serif;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
margin-top: 10px; /* Add some space above the button */
}
.create-account-button {
background: linear-gradient(90deg, #00c6ff, #ff00ff); /* Gradient button */
color: #fff;
}
.create-account-button:hover {
background: linear-gradient(90deg, #00a3cc, #e600e6);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(128, 0, 128, 0.5); /* Purple-ish shadow */
}
.login-redirect {
margin-top: 20px;
font-size: 14px;
color: #c0c0e0;
}
.login-redirect a {
color: #ff00ff;
text-decoration: none;
font-weight: 600;
}
.login-redirect a:hover {
text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar {
flex-direction: column;
padding: 15px;
}
.nav-logo {
margin-bottom: 10px;
}
.nav-links {
margin-bottom: 10px;
text-align: center;
}
.nav-links a {
display: block;
margin: 8px 0;
}
.signup-card {
padding: 20px;
margin-top: 20px;
max-width: 90%;
}
.signup-card h2 {
font-size: 20px;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.signup-form input[type="password"] {
font-size: 14px;
}
.action-button {
font-size: 16px;
}
}
@media (max-width: 480px) {
.signup-card {
padding: 20px 15px;
}
.input-group.terms {
font-size: 12px;
}
}