-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
48 lines (42 loc) · 835 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
48
form {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
input[type="text"],
input[type="email"],
textarea {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
background-color: #fff;
}
textarea {
resize: vertical;
min-height: 150px;
}
button[type="submit"] {
display: block;
margin: 0 auto;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #f00a77;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #f66;
}
.contact_error {
color: #f00;
font-size: 14px;
font-weight: bold;
margin-top: 10px;
}