/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a background color for the form */
section {
  padding: none !important;
}
.contact {
  background-image: url(https://images.pexels.com/photos/712618/pexels-photo-712618.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.glass {
  padding: 70px 0px;
  height: 100%;
  backdrop-filter: blur(10px);
}
.glass .booking-title  {
  font-size: 29px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

/* Center the form on the page */
.form_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Set styles for the form container */
.form_container {
  background-color: #16151580;
  padding: 40px;
  margin-top: 100px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(141, 139, 139, 0.1);
  max-width: 500px;
  width: 100%;
}
/*// location*/

.state-city .location {
  width: 40%;
}

.preloaderBg {
  position: fixed;
  z-index: 10;
  top: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader {
  margin: auto;
  background: url("../images/JessyLogo.png") no-repeat center;
  background-size: 150px;
  width: 300px;
  height: 300px;
  position: relative;
  top: 130px;
}

.preloader2 {
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--color-primary);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin: auto;
  top: -120px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Style the form title */
.title_container {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.title_container h2 {
  text-align: center;
  padding: 10px 0px 30px;
  font-size: 24px;
  color: #f0ebeb;
  text-shadow: 1px 1px 1px#000;
}
.title_container h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  border-radius: 30px;
  bottom: 13px;
  margin: auto;
}

/* Style the input fields */
.input_field ::placeholder {
  color: #fff;
}
.input_field {
  background-color: transparent;
  position: relative;
  margin-bottom: 20px;
  color: #fff;
}

.input_field span {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #fff;
}
.input_field option {
  color: #000;
}

.input_field input[type="text"],
.input_field input[type="email"],
.input_field input[type="tel"],
.input_field select {
  width: 100%;
  padding: 10px 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: transparent;
  font-size: 14px;
}
.input_field input[type="text"] {
  width: 100%;
  padding: 10px 40px;
  border: 1px solid #ddd;
  background: transparent;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
}

/* Style the radio buttons */
.radio_option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-right: 20px;
}

.radio_option input[type="radio"] {
  margin-right: 5px;
}

.radio_option label {
  color: #fff;
  margin-right: 20px;
}

/* Style the checkbox options */
.checkbox_option {
  margin-bottom: 20px;
}

.checkbox_option input[type="checkbox"],
.checkbox_option label {
  display: inline-block;
  vertical-align: middle;
}

/* Style the submit button */
.button {
  display: flex;
  justify-content: center;
  padding: 10px;
  justify-content: center;
  color: #fff;
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  margin: 0px auto;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background-color: transparent;
  border: 2px solid var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form_container {
    padding: 0px;
  }
  .contact {
    background-image: url(https://images.pexels.com/photos/3416750/pexels-photo-3416750.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
  }
  .glass {
    padding: 10px !important;
  }
  .input_field {
    margin-bottom: 15px;
  }

  .button {
    padding: 8px;
  }
}
