.st-booking__form {
  max-width: 620px;
  margin: 26px auto 0;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid #ded8cc;
  border-radius: 16px;
  background: #fbfaf7;
}

.st-booking__form h3 {
  margin: 0 0 20px;
  color: #18382e;
  font-size: 22px;
}

.st-machines-heading {
  margin-top: 28px !important;
}

.st-machine-card {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #d9d4c9;
  border-radius: 12px;
  background: #fff;
}

.st-machine-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #18382e;
}

.st-machine-card__header button {
  border: 0;
  background: transparent;
  color: #8a2020;
  cursor: pointer;
  text-decoration: underline;
}

.st-add-machine {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border: 1px dashed #294f43;
  border-radius: 9px;
  background: #eef5f1;
  color: #18382e;
  font-weight: 700;
  cursor: pointer;
}

.st-machine-limit {
  margin: 9px 0 0;
  color: #725520;
  font-size: 13px;
}

.st-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.st-field {
  display: block;
}

.st-field--full {
  grid-column: 1 / -1;
}

.st-field > span {
  display: block;
  margin-bottom: 6px;
  color: #354840;
  font-size: 13px;
  font-weight: 700;
}

.st-field input,
.st-field select,
.st-field textarea {
  width: 100% !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid #cfc9bd !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: #24322d !important;
  font: inherit !important;
  box-shadow: none !important;
}

.st-field textarea {
  min-height: 120px;
  resize: vertical;
}

.st-field input:focus,
.st-field select:focus,
.st-field textarea:focus {
  border-color: #294f43 !important;
  outline: 2px solid rgba(41, 79, 67, .13) !important;
  outline-offset: 1px;
}

.st-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0;
  color: #53625c;
  font-size: 13px;
}

.st-consent input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.st-booking__submit {
  width: 100%;
  min-height: 50px;
  border: 0 !important;
  border-radius: 10px !important;
  background: #294f43 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.st-booking__submit:hover {
  background: #18382e !important;
}

.st-booking__submit:disabled {
  opacity: .62;
  cursor: wait;
}

.st-booking__error,
.st-booking__success {
  max-width: 620px;
  margin: 20px auto 0;
  padding: 17px 19px;
  border-radius: 12px;
}

.st-booking__error {
  border: 1px solid #e6b8b8;
  background: #fff1f1;
  color: #8a2020;
}

.st-booking__success {
  border-left: 4px solid #294f43;
  background: #eef5f1;
  color: #24322d;
}

.st-booking__success h3 {
  margin: 0 0 7px;
  color: #18382e;
}

.st-booking__success p {
  margin: 0;
}

@media (max-width: 560px) {
  .st-form-grid {
    grid-template-columns: 1fr;
  }

  .st-field--full {
    grid-column: auto;
  }
}
