.form_1__container {
  padding-top: 60px;
  padding-bottom: 70px;
}
.form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-700);
}
.field input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--slate-500);
  border-radius: 4px;
  font-size: calc(16 / 16 * 1rem);
  line-height: 24px;
  font-weight: normal;
  color: var(--slate-700);
}
.field input:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
}
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--slate-500);
  border-radius: 4px;
  font-size: calc(16 / 16 * 1rem);
  line-height: 24px;
  font-weight: normal;
  color: var(--slate-700);
  resize: vertical;
  min-height: 120px;
  height: 120px;
  max-height: 320px;
}
.field textarea:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
}
.field select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--slate-500);
  border-radius: 4px;
  font-size: calc(16 / 16 * 1rem);
  line-height: 24px;
  font-weight: normal;
  color: var(--slate-700);
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM2NDc0OGIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9ucy11cC1kb3duIj48cGF0aCBkPSJtNyAxNSA1IDUgNS01Ii8+PHBhdGggZD0ibTcgOSA1LTUgNSA1Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 12px);
  background-position-y: 10px;
  background-color: #fff;
}
.field select:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
}
.form .btn__inner {
  color: var(--slate-700);
  background-color: var(--slate-100);
  border-radius: 8px;
  transform: unset !important;
}
.form button {
  grid-column: span 6;
}
.form button:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
  border-radius: 8px;
}
.field p {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
  margin-top: 8px;
}
.field .required {
  color: var(--main);
  font-size: calc(12 / 16 * 1rem);
  position: relative;
  top: -2px;
  left: 2px;
  line-height: 0;
}

@media(max-width: 500px) {
  .form * {
    grid-column: span 6 !important;
  }
  .form button {
    justify-self: end;
}
}