blob: 478821a30a8475e517f6fa73c75f95c46510a55a (
plain)
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
|
body{
font-family: 'Roboto', sans-serif;
}
.title{
text-align: center;
font-weight: 700;
font-size: 2rem;
}
.form{
max-width: 500px;
margin: 10px auto;
padding: .5em 2em;
}
.form__label {
display: inline-block;
margin-top: 20px;
margin-bottom: 5px;
cursor: pointer;
}
.form__input{
box-sizing: border-box;
width: 100%;
margin-bottom: 20px;
border-width: 3px;
height: 45px;
border-radius: 3px;
}
.input-container{
position: relative;
}
.form__input-icon{
display: none;
position: absolute;
top: 10px;
left: 93%;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 1,
'wght' 400,
'GRAD' 0,
'opsz' 48
}
.icon-check{
color: #1ed12d;
}
.icon-cancel{
color: #be2a38;
}
.icon-warning{
vertical-align: bottom;
}
.form__input-error{
display: none;
margin: 0;
font-size: 1rem;
text-align: justify;
}
.form__error-text{
display: none;
background: #F66060;
margin-top: 10px;
margin-bottom: 30px;
padding: .7em;
}
.form__submit{
margin: 10px 0;
text-align: center;
}
.form__submit__button{
width: 30%;
padding: .8em;
background: #000;
color: #fff;
font-weight: 700;
border: none;
border-radius: 3px;
cursor: pointer;
}
.form__success-send-text{
display: none;
text-align: center;
color: #119200;
}
|