.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 40px;
    padding: 10px 20px;
    font-size: 100%;
    border-radius: 4px;
    margin: 10px;
}

.button-blue {
    background-color: rgb(230, 240, 254);
    border: 2px solid rgb(230, 240, 254);
    color: rgb(15, 118, 208);
    font-size: 1.2rem;
}

/*.button-blue:hover {*/
/*    background-color: rgb(15, 118, 208);*/
/*    border: none;*/
/*    color: rgb(245, 245, 245);*/
/*}*/

.button-gray {
    background-color: rgb(38, 50, 56);
    border: 2px solid rgb(38, 50, 56);
    color: rgb(245, 245, 245);
    font-size: 1.2rem;
}

.button-red {
    background-color: rgb(245, 245, 245);
    border: 2px solid rgba(255, 37, 37, 0.76);
    color: rgb(255, 37, 37);
}

.button-red:hover {
    background-color: rgba(255, 0, 0, 0.85);
    border: none;
    color: rgb(245, 245, 245);
}

.button-group {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 15px 55px;
}

.send-button-group {
    display: flex;
    text-align: center;
    justify-content: center;
    width: 130px;
}

.send-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 25px;
    font-size: 100%;
    border-radius: 4px;
}