blob: 800d96954c39cec38f89b5c5eeadcfacd7208697 (
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
|
.status {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.formone__radio {
display: flex;
align-items: center;
}
.formone__status {
display: flex;
align-items: center;
margin: 15px;
cursor: pointer;
}
.formone__status input[type='radio'] {
width: 1.5rem;
height: 1.5rem;
cursor: pointer;
}
.subheading__container {
font-family: 'Barlow';
display: flex;
flex-direction: column;
align-items: center;
font-weight: bolder;
margin: 20px;
padding: 20px;
}
.subheading {
font-size: var(--font-medium);
font-weight: 400;
}
.formone__status label {
margin-left: 10px;
}
|