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;
} 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;
}