.messages {
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    right: 1rem;
    bottom: 1rem;
}

.message{
    padding: 5px 15px;
    color: white;
    border-radius: 10px 0px 0px 0px;
}

.error {
    background-color: #ff4f4f;
}

.success {
    background-color: #4fff4f;
}

.info {
    background-color: #4f4fff;
}

.warning{
    background-color: #ffff4f;
}