.message-block{
    display: none;
}
.active{
    display: block;
}
#message-form{
    padding: 10px;
}
#message-form .success{
    color: #1fdd2e;
}
#message-form .error{
    color: red;
}
button.sendMessage{
   
    text-decoration: none;
    width: 100%;
 
    background-color: #26b15d;

    text-align: center;
    color: #fff;
    border: none;
    border-radius: 0.2rem;
}
.modal-auth{
    display: none;

}
.modal-auth-block{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    z-index: 20;

}
.modal-background{
    width: 100%;
    height: 100%;
    background-color: #ffffffab;
}
.modal-container{
    position: absolute;
    min-height: 100px;
    min-width: 250px;
    background-color: white;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 25%);
}
.modal-message{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.modal-btn{
    padding: 20px;
}