-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (45 loc) · 789 Bytes
/
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
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.form-container {
width: 50%;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color:#010131;
color:white;
}
.header{
text-align: center;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
display: block;
margin: 0 auto;
padding: 10px 20px;
background-color: #02C6F6;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: white;
color: #010131;
}