-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (125 loc) · 2.68 KB
/
style.css
File metadata and controls
147 lines (125 loc) · 2.68 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
body {
font-family: 'Poppins', sans-serif;
margin: 0;
min-height: 100vh;
background: url('https://images.unsplash.com/photo-1477346611705-65d1883cee1e?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZGFyayUyMGxhbmRzY2FwZXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
position: relative;
}
nav {
display: flex;
justify-content: space-between;
padding: 1rem 2rem;
background: rgba(0, 0, 0, 0.4);
color: white;
backdrop-filter: blur(10px);
}
nav ul {
display: flex;
gap: 1rem;
list-style: none;
}
nav a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
nav a:hover {
color: #ffc107;
}
.hero {
text-align: center;
padding: 3rem 1rem;
color: white;
}
.start-btn {
background: #ffc107;
border: none;
padding: 12px 25px;
margin-top: 1rem;
font-size: 1rem;
cursor: pointer;
border-radius: 25px;
font-weight: 600;
transition: all 0.3s ease;
}
.start-btn:hover {
background: #e0a800;
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.form-wrapper {
position: relative;
z-index: 1;
width: 100%;
max-width: 400px;
margin: 2rem auto;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
backdrop-filter: blur(8px);
overflow: hidden;
}
.forms-container {
display: flex;
width: 200%;
transition: transform 0.5s ease-in-out;
}
.form-box {
width: 50%;
padding: 2rem;
background: rgba(255,255,255,0.15);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
color: white;
transition: all 0.3s ease;
}
.form-box h3 {
text-align: center;
margin-bottom: 1rem;
}
.form-box input {
width: 100%;
margin-bottom: 1rem;
padding: 0.7rem;
border: 1px solid rgba(255,255,255,0.5);
border-radius: 8px;
background: rgba(255,255,255,0.1);
color: white;
outline: none;
transition: all 0.3s ease;
}
.form-box input:focus {
border-color: #ffc107;
box-shadow: 0 0 10px #ffc107;
background: rgba(255,255,255,0.2);
}
.form-box button {
width: 100%;
padding: 0.7rem;
background: #ffc107;
color: black;
font-weight: 600;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.form-box button:hover {
background: #e0a800;
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.form-box a {
color: #ffc107;
text-decoration: none;
transition: color 0.3s ease;
}
.form-box a:hover {
color: #e0a800;
}
footer {
text-align: center;
padding: 1rem;
background: rgba(0,0,0,0.4);
color: white;
backdrop-filter: blur(6px);
}