function sortCheckboxes(form) {
const checked = el => el.firstElementChild.checked;
const parent = form.querySelector(":scope > div");
const indices = new Map(Array.from(parent.children, (n, i) => [n, i]));
const sort = (a, b) => checked(b) - checked(a) || indices.get(a) - indices.get(b);
form.addEventListener("input", e => sortChildren(parent, e.target, sort));
parent.append(...[...parent.children].sort(sort));
return form;
}