-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
53 lines (47 loc) · 1009 Bytes
/
Copy pathform.css
File metadata and controls
53 lines (47 loc) · 1009 Bytes
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
*{
margin: 0%;
padding: 0%;
}
.form{
background-color: #001f3f;
padding: 30px;
margin-left: 550px;
margin-right: 550px;
margin-top: 100px;
border-radius: 40px;
}
.form h2{
font-size: 35px;
padding: 30px;
font: 700;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
color: #fff;
}
.form p{
padding-left: 35px;
border-radius: 2px 8px;
display: flex;
justify-content: center;
padding: 20px;
}
.form p input{
padding: 8.5px;
padding-left: 100px;
padding-right: 80px;
font-family: Georgia, 'Times New Roman', Times, serif;
border-radius: 8px;
border: 4px solid red;
}
.form button{
padding: 10px;
padding-left: 40px;
padding-right: 40px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
background-color: red;
color: #fff;
border: 1px solid;
font-family: Georgia, 'Times New Roman', Times, serif;
}