I added a style for when input text get focus. Then, all other elements below move every time the textbox gets/loses focus.
input[type=text]:focus {
border: 3px solid #555;
outline-offset: 0;
}
<input id="CodPostal" name="CodPostal" type="text" value placeholder="focus here">
<br/> text
<br/>
<input id="Name" name="Name" type="text" value>
I googled it and tried with outline-offset: 0;
but didn't work