.emm-leads-form {
  --emm-leads-ink: #243244;
  --emm-leads-muted: #5d6877;
  --emm-leads-border: #d8d2c7;
  --emm-leads-surface: #ffffff;
  --emm-leads-primary: #3d5066;
  --emm-leads-primary-hover: #2f4054;
  width: min(100%, 760px);
  margin: 24px 0;
  color: var(--emm-leads-ink);
}

.emm-leads-form,
.emm-leads-form * {
  box-sizing: border-box;
}

.emm-leads-form .field {
  display: block;
  margin: 0 0 16px;
}

.emm-leads-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--emm-leads-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.emm-leads-form input,
.emm-leads-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--emm-leads-border);
  border-radius: 6px;
  background: var(--emm-leads-surface);
  color: var(--emm-leads-ink);
  font: inherit;
  line-height: 1.45;
  box-shadow: none;
  appearance: none;
}

.emm-leads-form textarea {
  min-height: 150px;
  resize: vertical;
}

.emm-leads-form input:focus,
.emm-leads-form textarea:focus {
  outline: 2px solid rgba(61, 80, 102, .24);
  outline-offset: 2px;
  border-color: var(--emm-leads-primary);
}

.emm-leads-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--emm-leads-primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.emm-leads-submit:hover,
.emm-leads-submit:focus {
  background: var(--emm-leads-primary-hover);
  color: #fff;
}

.emm-leads-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.emm-leads-form .form-note {
  margin: 12px 0 0;
  color: var(--emm-leads-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .emm-leads-form {
    width: 100%;
  }

  .emm-leads-submit {
    width: 100%;
  }
}
