.dwd-lead-form-wrap {
  width: 100%;
}

.dwd-lead-form {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.dwd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dwd-field,
.dwd-field-full {
  margin: 0 0 1rem;
}

.dwd-field label,
.dwd-field-full label {
  display: block;
  font-weight: 700;
  color: #111827;
  margin-bottom: .4rem;
}

.dwd-field label span,
.dwd-field-full label span {
  color: #0b8f7a;
}

.dwd-lead-form input,
.dwd-lead-form select,
.dwd-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  padding: .85rem .95rem;
  font: inherit;
  color: #111827;
  background: #f9fafb;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.dwd-lead-form input:focus,
.dwd-lead-form select:focus,
.dwd-lead-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
  background: #fff;
}

.dwd-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.dwd-submit-button:hover,
.dwd-submit-button:focus {
  background: #1d4ed8;
}

.dwd-form-help {
  margin: .8rem 0 0;
  color: #4b5563;
  font-size: .95rem;
}

.dwd-form-notice {
  border-radius: 14px;
  padding: .9rem 1rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.dwd-form-error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.dwd-hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 760px) {
  .dwd-form-grid {
    grid-template-columns: 1fr;
  }

  .dwd-submit-button {
    width: 100%;
  }
}
