.mrwk-form {
  color: #101820;
}

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

.mrwk-form label {
  display: grid;
  gap: 8px;
  font: 600 15px/1.35 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mrwk-form label.wide {
  grid-column: 1 / -1;
}

.mrwk-form input,
.mrwk-form select,
.mrwk-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 24, 32, .18);
  border-radius: 8px;
  background: #fff;
  color: #101820;
  padding: 13px 14px;
  font: 500 16px/1.4 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mrwk-form textarea {
  min-height: 132px;
  resize: vertical;
}

.mrwk-form input:focus,
.mrwk-form select:focus,
.mrwk-form textarea:focus {
  outline: 3px solid rgba(47, 152, 220, .18);
  border-color: #2f98dc;
}

.mrwk-consent {
  margin-top: 22px;
  display: flex !important;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px !important;
  font-weight: 500 !important;
}

.mrwk-consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.mrwk-submit {
  margin-top: 22px;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: #2f98dc;
  color: #fff;
  padding: 15px 22px;
  font: 800 17px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.mrwk-submit:hover,
.mrwk-submit:focus {
  background: #1e7fbd;
}

.mrwk-submit[disabled] {
  opacity: .72;
  cursor: wait;
}

.mrwk-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 760px) {
  .mrwk-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mrwk-form input,
  .mrwk-form select,
  .mrwk-form textarea {
    font-size: 16px;
  }

  .mrwk-submit {
    width: 100%;
  }
}
