-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
85 lines (76 loc) · 1.56 KB
/
style.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
body{
background-image: url(./Images/whitebackground.png);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#container{
width: 80%;
display:flex;
align-items: center;
float: left;
margin-bottom: 2%;
}
h1{
font-weight: 980;
text-align: center;
margin: 3%;
margin-bottom: 0%;
color: #477236 ;
font-family: 'Montserrat', sans-serif;
font-style: normal;
font-size: 350%;
}
p{
font-size: large;
font-weight: 300;
text-align: justify;
}
.main-right{
width: 60%;
padding: 40px;
border: 2px solid #ff5722;
border-radius: 10px;
box-shadow: 0px 0px 5px gray;
}
ul{
list-style: none;
}
h2 {
margin-bottom: 20px;
font-size: 25px;
text-align: center;
}
form {
width: 120%;
}
#dob{
width: 300px;
border: none;
border-bottom:2px solid #ff5722;
margin-right: 5px;
}
::-webkit-input-placeholder{
color: #88847d;
}
.radio{
margin-right: 5px;
}
.button{
padding: 10px;
margin-top: 10px;
width: 30%;
background-color: rgb(28, 98, 11);
color: white;
border: none;
border-radius: 4px;
}
.button:hover{
background:#ff5722;
}
.errormessage{
color: red;
font-weight: 300;
padding-top: 5px;
}