.booking-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.booking-hero p {
  text-align: justify;
}

.booking-hero img {
  border-radius: 10px;
}

.desktop-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

form, form label {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #c80000;
  color: #fff;
  width: 50%;
  padding: 20px;
  border-radius: 10px;
}

.form-desc span {
  display: flex;
  gap:5px;
  align-items: center;
}

/* Responsive */

@media (max-width: 768px) {
  .booking-hero {
    display: flex;
    flex-direction: column-reverse;
  }

  .form-desc {
    width: 100%;
    margin-top: 10vw;
  }

  form#booking-form {
    width: 90%;
    margin: 10vw auto;
  }
}