.error{
    background-color: #EA423C;
    box-shadow: 4px 4px 15px 5px grey;
}
.message{
    /*
    height: 50px;
    width: 100%;
    */
    padding: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    /*left: 50%;*/
    right: 0px;
    margin: 1rem;
    /*transform: translateX(-50%);*/
    bottom: 0px;
    border-radius: 10px;
    z-index: 1000;
    font-weight: bold;
    color: white;
    box-sizing: border-box;
    max-width: 100vw;
}
.success{
    background-color: #0d6efd;
    box-shadow: 4px 4px 15px 5px grey;
}