
.message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.msg {
    width: 80%;
    font-size: medium;
    text-align: center;
    border-radius: 10px;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    color: #000d3f;

}
.msg_success {
    background-color: #8ee497;
    border: #006b1b solid 2px;
}

.msg_info {
    background-color: #8eb0e4;
    border: #000159 solid 2px;
}

.msg_error {
    background-color: #ffaaaa;
    border: #590000 solid 2px;
}
