#bookingForm {
max-width: 400px;
margin: 20px auto;
padding: 25px;
border-radius: 12px;
background: #ffffff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
font-family: 'Poppins', sans-serif;
text-align: center;
} #bookingForm .form-group {
margin-bottom: 20px;
text-align: left;
} #bookingForm label {
display: block;
font-size: 14px;
font-weight: 600;
color: #444;
margin-bottom: 6px;
} #bookingForm input[type="text"],
#bookingForm input[type="date"],
#bookingForm input[type="number"] {
width: 100%;
padding: 12px 14px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 15px;
color: #333;
background: #fafafa;
box-sizing: border-box;
transition: 0.3s ease-in-out;
}
#bookingForm input[type="text"]:focus,
#bookingForm input[type="date"]:focus,
#bookingForm input[type="number"]:focus {
border-color: #00a8a8;
outline: none;
background: #ffffff;
box-shadow: 0 0 8px rgba(0, 168, 168, 0.3);
} #bookingForm button {
display: block;
width: 100%;
padding: 12px;
background: linear-gradient(90deg, #00a8a8, #008d8d);
color: #fff;
font-size: 16px;
font-weight: bold;
text-align: center;
border: none;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(0, 168, 168, 0.3);
} #bookingForm button::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: rgba(255, 255, 255, 0.3);
transform: skewX(-20deg);
animation: flashLight 2.5s infinite linear;
}
@keyframes flashLight {
0% {
left: -100%;
}
100% {
left: 150%;
}
}
#bookingForm button:hover {
background: linear-gradient(90deg, #008d8d, #007676);
box-shadow: 0 5px 15px rgba(0, 168, 168, 0.5);
} #bookingForm input::placeholder {
color: #aaa;
font-size: 14px;
} @media screen and (max-width: 480px) {
#bookingForm {
padding: 20px;
}
#bookingForm button {
font-size: 14px;
}
}
#bookingForm input[type="number"] {
margin-top: 10px; }
#bookingForm button {
margin-top: 20px; padding: 12px 20px; }