blob: ce49470f0dd36a466004b79225be24f1238102b1 (
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
|
.formone {
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Barlow';
font-size: var(--font-medium-s);
}
.formone__radio {
display: flex;
align-items: center;
}
.formone__resident {
display: flex;
align-items: center;
margin: 15px;
cursor: pointer;
}
.formone__resident input[type='radio'] {
width: 1.5rem;
height: 1.5rem;
cursor: pointer;
}
.formone__resident label {
margin-left: 10px;
}
.formone__gender {
display: flex;
margin-bottom: 10px;
}
.formone__dob {
display: flex;
flex-direction: column;
}
.formone__dob input[type='date']::-webkit-calendar-picker-indicator {
width: 30px;
height: 30px;
margin: 0;
}
.formone__dob label {
font-size: 1.75rem;
}
.formone__dob_input {
width: 500px;
height: 80px;
margin: 10px 0px;
padding: 11px 10px;
border: 3px solid !important;
border-radius: 10px;
font-size: 1.5rem;
}
|