.mo-wpforms-like-form {
  font-size: 16px;
  line-height: 1.4;
}

.mo-form-head {
  margin-bottom: 20px;
}

.mo-form-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.mo-field {
  margin-bottom: 20px;
}

.mo-field label,
.mo-field legend {
  display: block;
  color: rgba(0,0,0,.85);
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mo-field-description,
.mo-sublabel {
  display: block;
  margin-top: 6px;
  color: rgba(0,0,0,.55);
  font-size: 14px;
  line-height: 17px;
}

.mo-field input[type="text"],
.mo-field input[type="email"],
.mo-field input[type="tel"],
.mo-field input[type="date"],
.mo-field select,
.mo-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 3px;
  background: #fff;
  color: rgba(0,0,0,.7);
  font-size: 16px;
}

.mo-field select {
  appearance: auto;
}

.mo-field textarea {
  min-height: 120px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.mo-field fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.mo-field-row {
  display: flex;
  gap: 15px;
}

.mo-field-row-block {
  flex: 1 1 0;
}

.mo-one-half {
  width: 50%;
}

.mo-choices {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mo-choices li + li {
  margin-top: 10px;
}

.mo-choices label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 400;
}

.mo-field-checkbox .mo-choices label,
.mo-field-radio .mo-choices label {
  cursor: pointer;
}

.mo-field-hp {
  position: absolute !important;
  overflow: hidden !important;
  display: inline !important;
  height: 1px !important;
  width: 1px !important;
  z-index: -1000 !important;
  padding: 0 !important;
}

.mo-field-hp input {
  visibility: hidden;
}

.required {
  color: #d63637;
}

.mo-submit-container {
  margin-top: 10px;
}

.mo-submit {
  min-height: 41px;
  padding: 0 15px;
  border: none;
  border-radius: 3px;
  background: #066aab;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.mo-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 3px;
}

.mo-form-message.success {
  background: #e7f5ea;
  color: #216a35;
}

.mo-form-message.error {
  background: #fdeaea;
  color: #b42318;
}

@media (max-width: 767px) {
  .mo-field-row {
    flex-direction: column;
    gap: 15px;
  }

  .mo-one-half {
    width: 100%;
  }
}