-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
127 lines (127 loc) · 2.57 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*, *::after, *::before{
box-sizing: border-box;
font-family: Inter;
font-style: normal;
font-weight: normal;
}
html{
font-size: 16px;
}
body{
margin: 0;
padding: 0;
}
.container{
height: 100vh;
margin: auto;
background-image: url(image_form.png);
background-size: cover;
background-position: center;
}
.container .form{
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
width: 60%;
height: 100vh;
background-color: #FFFFFF;
box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.25), -10px -10px 25px rgba(0, 0, 0, 0.25);
overflow: hidden;
}
.container .form .block{
width: 45%;
}
.container .form .heading{
display: block;
text-align: center;
font-weight: 600;
font-size: 26px;
line-height: 44px;
color: #405282;
margin-bottom:
}
.container .form .universal{
width: 100%;
padding: 20px 0px 10px 15px;
border-width: 0px 0px 3px 0px;
border-style: solid;
border-color: #808080;;
}
.container .form .universal:focus{
outline: none;
box-shadow: none;
border-bottom: 3px solid #405282;
}
.block_1{
padding-top: 0px;
}
.custom_checkbox{
width: 0;
height: 0;
opacity: 0;
visibility: hidden;
margin: 0px;
}
label{
display: block;
}
.custom_checkbox + label{
position: relative;
padding-left: 40px;
}
.custom_checkbox + label::before{
box-sizing: content-box;
content: "";
position: absolute;
left: 10px;
top: 6px;
width: 12px;
height: 12px;
border: 2px solid #7F7F7F;
border-radius: 6px;
padding: 0px 1px 2px 1px;
}
.custom_checkbox:checked + label::before{
content: "✓";
font-size: 14px;
position: absolute;
left: 10px;
top: 6px;
color: #41C1DC;
width: 12px;
height: 12px;
border: 2px solid #7F7F7F;
padding: 0px 1px 2px 1px;
}
.container .form label{
font-weight: 400;
font-size: 13px;
color: #AEAEAE;
line-height: 18px;
}
.container .form .style{
color: #00b8e6;
}
.container .form .style:hover{
text-decoration: underline;
text-decoration-color: #00b8e6;
}
.container .form .button{
width: 100%;
font-size: 26px;
color: #FFFFFF;
background-color: #405282;
padding: 8px 0px;
border: none;
border-radius: 30px;
margin-top: 20px;
}
.container .form .button:hover{
background-color: #41C1DC;
}
.container .form .button:active{
background-color: #405282;
filter: drop-shadow(0px 2px 10px #405282);
}