-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking.css
More file actions
75 lines (62 loc) · 1.3 KB
/
Copy pathbooking.css
File metadata and controls
75 lines (62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
body {
background: #fffaf4;
font-family: 'Segoe UI', sans-serif;
}
.form-container {
max-width: 700px;
margin: 50px auto;
padding: 30px;
background-color: #fff;
box-shadow: 0 4px 16px rgba(0,0,0,0.05);
border-radius: 12px;
}
.form-title {
font-weight: 700;
font-size: 2rem;
text-align: center;
margin-bottom: 25px;
color: #333;
}
label {
font-weight: 500;
margin-top: 12px;
}
.form-control:focus {
border-color: #ff4d4d;
box-shadow: 0 0 0 0.2rem rgba(255, 77, 77, 0.25);
}
.btn-primary {
background-color: #ff4d4d;
border: none;
}
.btn-primary:hover {
background-color: #e04343;
}
.back-link {
display: inline-block;
margin-top: 20px;
text-align: center;
width: 100%;
}
.back-link a {
color: #555;
text-decoration: none;
}
.back-link a:hover {
text-decoration: underline;
}
.section-box {
background-color: #fdf8f5;
border: 1px solid #e2dcd7;
padding: 20px;
border-radius: 10px;
margin-bottom: 25px;
}
.section-box h5 {
font-weight: 600;
margin-bottom: 20px;
color: #d13b3b;
}
.mt-3{
font-size: 14px;
}