.mensagem {
    position: fixed;
    top: 20px;
    /*right: -330px;*/
    right: -320px;
    /*background-color: #3498db;*/
    color: white;
    /*padding: 10px;*/
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: right 0.3s ease-in-out;
    max-width: calc(100% - 40px);
    z-index: 200;
}

.msgSucesso { background-color: #43c35f; }
.msgErro { background-color:#db4d4d; }

.caixaTextoMsg
{
    box-sizing: border-box;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 7px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.mensagem.show {
    right: 20px;
}

.icone-mensagem { font-size:20px; }