  .shakeme {
    -webkit-animation: shake 0.1s 3;
    animation-timing-function: ease-out;
    position: relative;
}


.error-alert{
    font-size: 11px;
    color: firebrick;
}

@keyframes shake {
    0% {
        left: -10px;
    }
    50% {
        left: 10px;
    }
    100% {
        left: 0px;
    }
}