Newer
Older
@use 'styles/settings.scss' as s;
@use 'styles/mixins.scss' as mx;
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
form {
.fields-row {
@include mx.breakpoint(large) {
display: flex;
flex-wrap: wrap;
margin: -15px;
}
.col {
@include mx.breakpoint(large) {
margin: -20px 0;
width: 50%;
padding: 15px;
}
.input-element,
.field {
margin: 20px 0;
}
}
}
.field {
position: relative;
}
.note {
margin-top: 5px;
font-size: 12px;
display: flex;
align-items: center;
span {
margin-right: 5px;
font-size: 12px;
}
}
.field-label {
font-size: 16px;
position: absolute;
left: 20px;
font-weight: s.$weight-bold;
z-index: 20;
transform: translateY(-50%);
}
select,
width: 100%;
font-size: 16px;
border: none;
padding: 20px;
outline: none;
border-radius: 15px;
position: relative;
display: block;
border-radius: 15px;
font-weight: s.$weight-regular;
font-family: s.$body-font;
background: s.$background-input;
}
h2 {
margin: 30px 0 20px 0;
@include mx.breakpoint(large) {
margin-top: 50px;
}
}
.button-container {
margin-top: 30px;
}