.rowBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.checkboxField {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(234, 240, 255, 0.6);
  font-size: 0.92rem;
}

.checkboxField:hover span {
  color: #ffffff;
}

.checkboxField input {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

@media (max-width: 720px) {
  .rowBetween {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
