.close {
    position: absolute;
    top: 1%;
    right: 2%;
    z-index: 102;
}

.container-error {
    top: 2%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 500px;
    z-index: 999999999;
   -webkit-animation: popup-login-error 1s linear;
    -moz-animation: popup-login-error 1s linear;
    -ms-animation: popup-login-error 1s linear;
    -o-animation: popup-login-error 1s linear;
}

@-webkit-keyframes popup-login-error {
        from {
            top: -10%;
        }
        to {
            top: 2%;
        }
}