.form-status {
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.5;
}
.form-status[data-type="success"] {
  color: var(--blue-light, #b1cfdf);
}
.form-status[data-type="error"] {
  color: #f5a8a8;
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Согласие на обработку персональных данных (152-ФЗ) */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.8;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue, #8cb3cb);
  cursor: pointer;
}
.form-consent a {
  color: var(--blue-light, #b1cfdf);
  text-decoration: underline;
}
