.booking_form_container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 100px;
}

.booking_form h1 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
	color: #333;
}

.booking_form form {
	width: 100%;
}

.booking_form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
	margin: 0;
}

.booking_form input[type="text"],
.booking_form input[type="email"],
.booking_form input[type="date"],
.booking_form select,
.booking_form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: #dfdfdf;
	outline: none;
	color: #333;
	margin: 0;
}

.booking_form textarea {
	max-width: 100%;
	min-width: 100%;
	max-height: 100px;
}

.booking_form input[type="submit"] {
	width: 100%;
	padding: 10px;
	background-color: #4CAF50;
	border: none;
	border-radius: 4px;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

.booking_form input[type="submit"]:hover {
	background-color: #45a049;
}

@media screen and (max-width: 768px) {
	.booking_form_container {
		margin: 5px;
	}

	.booking_form_container {
		margin-bottom: 100px;
	}
}