-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
185 lines (145 loc) · 2.64 KB
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, input, button, select, textarea {
font-family: 'Poppins', sans-serif;
}
body {
background: #E5E5E5;
}
body::before{
content: '';
width: 100%;
height: 368px;
position: absolute;
top:0;
left:0;
z-index: -1;
background: #121214;
}
.page {
margin: auto;
width: 736px;
}
header {
width: 319px;
margin-top: 74px;
margin-left: 70px;
}
header h1 {
font-family: 'Archivo', sans-serif;
font-weight: bold;
font-size: 36px;
line-height: 42px;
color: white;
margin-bottom: 24px;
}
header p {
font-size: 16px;
line-height: 26px;
color: #42D3FF;
}
form {
background: #FAFAFC;
min-height: 300PX;
margin-top: 38px;
padding: 65px;
border-radius: 8px 8px 0 0;
display: flex;
flex-direction: column;
gap: 48px;
}
fieldset {
border: none;
}
.fieldset.wrapper {
display: flex;
flex-direction: column;
gap: 24px;
}
fieldset legend {
font-family: 'Archivo', sans-serif;
font-weight: 600;
font-size: 24px;
line-height: 34px;
width: 100%;
border-bottom: 1px solid #E6E6F0;
padding-bottom: 16px;
}
.input-wrapper {
display: flex;
flex-direction: column;
}
.input-wrapper label,
.checkbox-wrapper label {
font-size: 14px;
line-height: 24px;
color: #4E4958;
margin-bottom: 8px;
}
.input-wrapper label span:hover {
color: #6c6a71;
}
.input-wrapper label span {
margin-left: 12px;
font-size: 12px;
line-height: 20px;
color: #97949e;
}
.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
background: #FAFAFC;
border: 1px solid #E6E6F0;
border-radius: 8px;
height: 56px;
padding: 0 24px;
font-size: 16px;
line-height: 26px;
color: #6c6a71;
}
.input-wrapper textarea {
padding: 0;
height: 168px;
}
.col-3 {
display: flex;
gap: 20px;
}
.col-3 > div:nth-child(1) {
width: 100%;
}
.checkbox-wrapper {
display: flex;
align-items: center;
gap: 6px;
}
.checkbox-wrapper label {
margin: 0;
}
footer {
background: #F0F0F4;
height: 136px;
display: flex;
flex-direction: column;
padding: 40px 64px;
margin-bottom: 100px;
border-top: 1px solid #d6d6d6;
border-radius: 0 0 8px 8px;
}
footer .button {
height: 56px;
background: #04D361;
border: 0;
border-radius: 8px;
font-family: 'Archivo';
font-weight: 600;
font-size: 16px;
line-height: 26px;
color: #FFFFFF;
}
footer .button:hover {
background: #05803c;
}