forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
destinationform.css
38 lines (31 loc) · 890 Bytes
/
destinationform.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
.booking-form-container {
background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.booking-form {
background-color: rgba(255, 255, 255, 0.9);
transition: all 0.3s ease;
}
.booking-form:hover {
transform: translateY(-5px);
}
.form-control, .form-select {
transition: box-shadow 0.3s ease;
}
.form-control:hover, .form-select:hover {
box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}
.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
}
@media (max-width: 768px) {
.booking-form {
padding: 1.5rem !important;
}
}