-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.css
71 lines (62 loc) · 1.19 KB
/
contact.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.contact-us {
background-color: #fff;
border-radius: 8px;
padding: 2rem;
width: 100%;
max-width: 500px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.contact-us h2 {
color: #4285F4;
font-size: 2rem;
margin-bottom: 1rem;
}
.contact-us p {
color: #555;
margin-bottom: 2rem;
}
.contact-us label {
display: block;
color: #333;
margin-bottom: 0.5rem;
font-weight: bold;
}
.contact-us input,
.contact-us textarea {
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
.contact-us button {
background-color: #4285F4;
color: #fff;
font-size: 1rem;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-us button:hover {
background-color: #357ae8;
}
.contact-us button:active {
background-color: #3367d6;
}