.mensagem-erro-container {
    overflow: hidden;
    max-width: 500px;
    min-height: 50px;

    position: fixed;
    z-index: 1000;
    right: 14px;
    bottom: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 8px 15px 10px 15px;
    border-radius: 10px;

    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    box-shadow: 0px 0px 6px 0px #00000078;

    animation: slide-down 0.8s forwards, fade-out 1s forwards 5s;
}

.mensagem-erro-container>.mensagem {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.mensagem-barra-progresso-tempo {
    position: absolute;
    width: 100%;
    bottom: 0px;
    right: 0px;
    height: 3px;
    border-radius: 0px 0px 10px 10px;
    background-color: #842029;
    animation: barra-progresso-tempo 5s linear forwards;
}

@keyframes barra-progresso-tempo {
    0% {
        width: 100%;
    }

    2% {
        border-radius: 0px 0px 10px 0px;
    }

    100% {
        width: 0%;
    }
}

@keyframes slide-down {
    from {
        bottom: -100px;
    }

    to {
        bottom: 12px;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        right: 14px;
    }

    20% {
        opacity: 1;
        right: 24px;
    }

    100% {
        opacity: 0;
        display: none;
        right: -400px;
    }
}