.reservations-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}

.res-content {
  display: flex;
  flex-direction: column;
  margin: 90px 40px 100px 40px;
  align-items: center;
}

.res-content h4 {
  padding-top: 4vh;
  text-align: center;
}

.res-content p {
  text-align: center;
  display: block;
  padding: 4vh 16vw 0 16vw;
}

/* FORM STYLING */
label {
  display: block;
  margin-bottom: 1vh;
}

input,
select {
  height: 5vh;
  min-height: 4vh;
  padding-left: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.contact-form-box {
  width: 80vw;
  margin-bottom: 10vh;
  background-color: white;
  border-radius: 25px;
}

.box-style {
  margin-bottom: 5vh;
}

.form-wrapper {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin: 25px auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === DATE === */
.date-box-label {
  margin-bottom: 10px;
}

.date-box {
  display: flex;
  font-size: 14px;
}

.date-box-to {
  margin-left: 15px;
}

/* === END OF DATE === */

/* === INFO === */
.info-box {
  display: flex;
}

.amount-box {
  margin-left: 25px;
}

#amount {
  width: 80px;
  margin-right: 50px;
  padding-left: 20px;
}

/* === END OF INFO === */

/* === MESSAGE BOX === */

textarea {
  width: 90%;
  height: 20vh;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  resize: none;
}

/* === END OF MESSAGE BOX === */

/* === SUBMIT BUTTON === */
#submit {
  display: block;
  width: 275px;
  height: 60px;
  margin-top: 15px;
  line-height: 60px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: whitesmoke;
  background-color: rgb(238, 105, 46);
  border-radius: 30px;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
}

#submit:hover {
  border: 1px solid orangered;
  color: orangered;
  background-color: whitesmoke;
  letter-spacing: 3px;
}

.submit-button-label {
  font-size: 14px;
  color: orangered;
  font-weight: 600;
}

.label-off {
  display: none;
}

/* create a button active for above and an inactive below */

/* === END SUBMIT BUTTON === */

.box-style-input-1 {
  width: 90%;
}

@media screen and (max-width: 444px) {
  .form-left {
    width: 90%;
  }

  /* DATE QUERIES */
  .date-box {
    flex-direction: column;
  }

  #to-date {
    margin-left: 0;
  }

  .date-box-to {
    margin: 10px 0 0 0;
  }

  /* INFO BOX QUERIES */
  .info-box {
    flex-direction: column;
  }

  .amount-box {
    margin: 5vh 0 0 0;
  }

  textarea {
    width: 65vw;
    height: 35vh;
  }

  .captcha-box div {
    transform: scale(0.88);
    transform-origin: 0 0;
  }

  #submit {
    transform: scale(0.8);
    transform-origin: 0 0;
  }

  .submit-button-label {
    font-size: 12px;
  }
}

@media screen and (max-width: 720px) {
  .form-wrapper {
    flex-direction: column;
  }
}
