.text-alert {
    padding: 5px;
    animation: moveToRight;
    animation-duration: .5s;
    margin-top: 5px;
    font-size: 14px;
}

@keyframes moveToRight {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(0)
    }
}