Hey, I just went through those clips. As a dev, I can tell you exactly what’s happening: You’re dealing with a Cumulative Layout Shift (CLS) caused by a Reflow error in the browser.
Basically, when you click that field, the browser is recalculating the Box Model. Even a tiny 1px difference in the label usually caused by a font-weight change or a border popping up on :focus is forcing the input to ‘jump’ to make room.
Here’s the real issue: While it seems like a small glitch, it’s a trust killer. When a UI ‘moves’ under a user’s mouse, it feels unstable and unprofessional. If the interface feels shaky, users subconsciously hesitate to trust the platform with their data or payments.
fixes like usually just needs a tweak to the CSS (likely a box-sizing or outline fix) to make the whole experience feel rock-solid and premium again.
I’m ready to help check it Just to be sure:
Is this happening on all browsers (Chrome/Safari), or is it mostly acting up on mobile?Are you using a framework like Tailwind or Bootstrap, or is this a custom CSS setup?