.mensagem {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    display: none;
    z-index: 1000;
    min-width: 300px;
}

.sucesso {
    background-color: #4CAF50; /* Verde */
}

.erro {
    background-color: #FF5733; /* Vermelho */
}

.mensagem.mostrar {
    display: block;
    animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; display: none; }
}
