-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreservation.css
More file actions
59 lines (52 loc) · 1.3 KB
/
Copy pathreservation.css
File metadata and controls
59 lines (52 loc) · 1.3 KB
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
/* Reservation Section Styles */
.reservation-section {
padding: 60px 0;
background-color: #1a1a1a; /* Dark background */
color: #fff; /* White text */
}
.reservation-form {
max-width: 600px;
margin: 0 auto;
background-color: #2a2a2a; /* Slightly lighter dark background */
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 1rem;
color: #fff; /* White text */
margin-bottom: 8px;
font-weight: 600;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #444; /* Dark gray border */
border-radius: 8px;
font-size: 1rem;
color: #fff; /* White text */
background-color: #333; /* Dark input background */
}
.form-group textarea {
resize: vertical;
min-height: 100px;
}
.btn-primary {
background-color: #e67e22; /* Orange accent color */
color: #fff;
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-primary:hover {
background-color: #d35400; /* Darker orange on hover */
}