.mpcf-form {
  max-width: 100%;
}
.mpcf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.mpcf-col-full { width: 100%; }
.mpcf-col-half { width: calc(50% - 8px); }
.mpcf-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.mpcf-field input,
.mpcf-field textarea,
.mpcf-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd4dc;
  border-radius: 8px;
  box-sizing: border-box;
}
.mpcf-field textarea {
  min-height: 140px;
  resize: vertical;
}
.mpcf-checkbox {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.mpcf-checkbox input {
  width: auto;
}
.mpcf-submit {
  margin-top: 18px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.mpcf-response {
  margin-bottom: 14px;
  font-weight: 600;
}
.mpcf-response.is-success { color: #1f7a1f; }
.mpcf-response.is-error { color: #b42318; }
.mpcf-field-error {
  margin-top: 6px;
  color: #b42318;
  font-size: 13px;
}
.mpcf-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mpcf-col-half { width: 100%; }
}
