I can't make box shadow in chrome to work, I used webkit prefix but still I get orange frame around my tag instead I should get gray shadow. This is working in all browsers except Chrome.
.loginForm input[type='text']:focus, .loginForm input[type='password']:focus,
.registerForm input[type='text']:focus, .registerForm input[type='password']:focus{
box-shadow: 0 0 10px gray;
-webkit-box-shadow: 0 0 10px gray;
}