/**
 * Native form controls are painted by the browser compositor and are skipped
 * in CSS view-transition snapshots. During the same-origin navigation fade
 * (@view-transition in web/tailwind/base/index.css) they stay sharp on top of
 * the blurred page. Hide them for the duration of the transition.
 */
html:active-view-transition :is(input, textarea, select) {
    visibility: hidden;
}
