Remove Login Page Shake Animation
Disables the CSS shake animation applied to the login form when an incorrect password is entered, for a calmer error experience.
CSSby SnipCraft
css
/* Remove the WordPress login form shake on incorrect credentials */
@keyframes scseed-no-shake {
from, to { transform: none; }
}
#login form.shake {
animation: none !important;
}#animation#css#login#ux