body, html {
    margin: 0;
    padding: 0;
	width: 100%;
    font-family: 'PT Sans', sans-serif;
}

#booking {
    background-image: url('../img/SPS_1147.jpg');
	background-color: #f39b49;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: sticky;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

#booking::before {
    content: "";
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 1); 
    z-index: 1;
}

.section-center {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
}

.booking-form1 {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	width: 60.89%;
	margin: auto;
}

.booking-form {
	width: 100%;
	opacity: 1;
}
h1 {
    text-align: center;
    color: #f1c40f;
    font-weight: bold;
    font-size: 32px;
    margin-top: 20px;
}

legend {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label.form-label {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.form-checkbox label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #2c3e50;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-checkbox span {
    position: absolute;
    left: 0;
    top: 3px;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
}

.form-checkbox input:checked ~ span {
    background-color: #27ae60;
}

.form-checkbox span:after {
    content: "";
    position: absolute;
    display: none;
}

.form-checkbox input:checked ~ span:after {
    display: block;
}

.form-checkbox span:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.required {
	color: red;
}
i {
	font-size: small;
	color: #219150;
}

.form-btn {
    margin-top: 30px;
}

.submit-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.submit-btn1 {
    background-color: red;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#plate {
	text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #219150;
}
@media (max-width: 768px) {
	.section-center {
	  padding: 10px;
	}
  
	.booking-form1 {
	  padding: 25px 20px;
	  width: 94.99%;
	}
  
	h1 {
	  font-size: 24px;
	  margin-top: 10px;
	}
  
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	select {
	  font-size: 15px;
	  padding: 10px;
	}
  
	.form-checkbox label {
	  font-size: 14px;
	}
  
	.submit-btn {
	  font-size: 15px;
	  padding: 12px;
	}
  }
  
  @media (max-width: 480px) {
	.booking-form1 {
	  border-radius: 8px;
	  padding: 20px 15px;
	}
  
	h1 {
	  font-size: 20px;
	}
  
	label.form-label {
	  font-size: 14px;
	}
  
	.submit-btn {
	  font-size: 14px;
	  padding: 10px;
	}
  }
  