When an HTML element is \'focused\' (currently selected/tabbed into), many browsers (at least Safari and Chrome) will put a blue border around it.
For the layout I a
You can try this also
input[type="text"] { outline-style: none; }
or
.classname input{ outline-style: none; }