Some people understand "user-friendliness" and design rather different than Google. So, to eliminate the outline border effect on form element focus which is Chrome's default behavior here is the quick fix.
In the CSS you set the default behavior as it is in the rest of the browsers.
input,select,textarea{
outline:none;
}