If you don’t like the “shake” effect which occurs each time a login error occurs? Here is a super easy snippet to remove it for good.
Simply paste the following code into your functions.php file:
function wps_login_error() {
remove_action('login_head', 'wp_shake_js', 12);
}
add_action('login_head', 'wps_login_error');