-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
102 lines (90 loc) · 1.92 KB
/
signup.css
File metadata and controls
102 lines (90 loc) · 1.92 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
body {
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
background: radial-gradient(circle at top, #1f1c2c, #0f0c29);
color:white;
}
.signup-container {
width:100%;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}
.signup-box {
background: rgba(40,42,54,0.9);
padding:40px 30px;
border-radius:16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
width:350px;
text-align:center;
animation: fadeIn 1s ease forwards;
}
.signup-box h2 {
margin-bottom:30px;
color:#4facfe;
}
.input-group {
position: relative;
margin-bottom:25px;
}
.input-group input {
width:100%;
padding:12px 10px;
border:none;
border-bottom:2px solid #555;
background: transparent;
color:white;
font-size:16px;
outline:none;
transition:0.3s;
}
.input-group label {
position:absolute;
top:12px;
left:10px;
color:#aaa;
pointer-events:none;
transition:0.3s;
}
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
top:-10px;
left:5px;
font-size:12px;
color:#00f2fe;
}
.btn {
padding:12px;
width:100%;
border:none;
border-radius:30px;
background: linear-gradient(90deg,#00f2fe,#4facfe);
color:#000;
font-weight:600;
cursor:pointer;
transition:0.3s;
}
.btn:hover {
transform: translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.4);
}
.redirect {
margin-top:15px;
font-size:14px;
}
.redirect a {
color:#4facfe;
text-decoration:none;
}
.redirect a:hover {
text-decoration:underline;
}
@keyframes fadeIn {
from {opacity:0; transform: translateY(20px);}
to {opacity:1; transform: translateY(0);}
}