.ml-form-interestGroupsRowCheckbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.25em;
  font-size: 1rem;
  font-weight: 600;
  color: #0c7874;
  gap: 0.75em;
}

.ml-form-interestGroupsRowCheckbox input[type="checkbox"] {
  position: relative;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #0c7874;
  border-radius: 4px;
  cursor: pointer;
}

.ml-form-interestGroupsRowCheckbox input[type="checkbox"]:checked::after {
  content: '✔';
  position: absolute;
  left: 3px;
  top: -1px;
  font-size: 16px;
  color: #0c7874;
}