.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-weight: 750;
}
.field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #07131f;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
.field input:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.field.full,
.form-actions,
.consent {
  grid-column: 1/-1;
}
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.status {
  margin-top: 16px;
  color: var(--cyan);
}
.report-single {
  width: min(760px, calc(100% - 40px));
}
.report-card {
  padding: clamp(22px, 4vw, 38px);
}
.report-summary:not(:empty) {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.report-summary h2 {
  margin-bottom: 8px;
}
.report-form-title {
  margin: 0 0 22px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}
@media (max-width: 650px) {
  .lead-form {
    grid-template-columns: 1fr;
  }
  .field.full,
  .form-actions,
  .consent {
    grid-column: auto;
  }
  .report-single {
    width: min(100% - 24px, 760px);
  }
  .report-card {
    padding: 20px;
  }
  .form-actions {
    display: grid;
  }
  .form-actions .btn {
    width: 100%;
  }
}
