.khcf-wrap {
  width: 100%;
}

.khcf-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.khcf-field {
  display: grid;
  gap: 7px;
}

.khcf-field label {
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
}

.khcf-field label span {
  color: #b42318;
}

.khcf-field input,
.khcf-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c7c7c7;
  border-radius: 2px;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  padding: 12px 14px;
}

.khcf-field input:focus,
.khcf-field textarea:focus {
  border-color: #e2564d;
  box-shadow: 0 0 0 2px rgba(226, 86, 77, 0.2);
  outline: none;
}

.khcf-submit {
  justify-self: start;
  min-width: 140px;
  border: 1px solid #e2564d;
  border-radius: 2px;
  background: #e2564d;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 12px 24px;
}

.khcf-submit:hover,
.khcf-submit:focus-visible {
  border-color: #de463b;
  background: #de463b;
  color: #fff;
}

.khcf-message {
  margin-bottom: 18px;
  border-left: 4px solid;
  padding: 12px 14px;
}

.khcf-message--success {
  border-color: #16803a;
  background: #edf9f0;
  color: #155b2c;
}

.khcf-message--error {
  border-color: #b42318;
  background: #fff1f0;
  color: #8a1c13;
}

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

@media (max-width: 600px) {
  .khcf-submit {
    width: 100%;
  }
}
