.order-form-page {
  background: var(--cream);
}

.order-form-main {
  min-height: 1494px;
  padding: 59px 20px 52px;
  background: rgb(255 204 211 / 50%);
}

.order-form-main > h1 {
  margin: 0;
  color: var(--red);
  font-size: 45px;
  line-height: 54px;
  text-align: center;
}

.order-form-main > p {
  margin: 29px 0 0;
  font-size: 20px;
  text-align: center;
}

.order-request-form {
  display: grid;
  width: min(1033px, 100%);
  margin: 91px auto 0;
  gap: 29px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#order-form-message {
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 700;
  text-align: center;
}

.order-request-form input,
.order-request-form select,
.order-request-form textarea {
  width: 100%;
  border: 1px solid #000000;
  color: #000000;
  background: #ffffff;
  font: 400 20px/1.2 "Inter", sans-serif;
}

.order-request-form input,
.order-request-form select {
  height: 75px;
  padding: 0 27px;
  border-radius: 25px;
}

.order-request-form input::placeholder,
.order-request-form textarea::placeholder {
  color: #000000;
  opacity: 1;
}

.order-request-form input:focus-visible,
.order-request-form select:focus-visible,
.order-request-form textarea:focus-visible {
  outline: 3px solid rgb(204 65 86 / 35%);
  outline-offset: 2px;
}

.delivery-select {
  position: relative;
}

.delivery-select select {
  padding-right: 64px;
  appearance: none;
  cursor: pointer;
}

.delivery-select img {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 21.415px;
  height: 12.148px;
  pointer-events: none;
  transform: translateY(-50%);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 29px 25px;
}

.order-request-form textarea {
  height: 426px;
  padding: 24px 27px;
  border-radius: 25px;
  resize: vertical;
}

.order-request-form > button {
  min-width: 198px;
  height: 80px;
  margin: 26px auto 0;
  padding: 0 55px;
  border: 0;
  border-radius: 50px;
  color: #ffffff;
  background: var(--green);
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.order-request-form > button:hover,
.order-request-form > button:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .order-form-main {
    min-height: 0;
    padding: 48px 20px 80px;
  }

  .order-form-main > h1 {
    font-size: 36px;
  }

  .order-form-main > p {
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.45;
  }

  .order-request-form {
    margin-top: 58px;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .order-request-form textarea {
    height: 320px;
    padding-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-request-form > button {
    transition: none;
  }
}
