Skip to content

Stop vertically aligning your checkboxes with center. Instead use baseline to keep it aligned with the first line of the label text.

label {
  display: flex;
  align-items: center; 
  align-items: baseline; 
}