/*
Style des boutons -------------------------------------------------------------------------------------
*/

/*
Bouton avec background
*/
button {
    background-color: #786dec;
    border-radius: 8px;
    border: none;
    height: 40px;
    color: white;
    font-size: 1rem;
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
}
button:hover {
    background-color: #6f62f5;
}

/*
Bouton de type "lien"
*/
button.btn-link {
    color: #786dec;
    border: none;
    background: none;
    margin: 0;
    outline: none !important;
    font-weight: 300;
    padding: 0;
    height: initial;
}
button.btn-link:hover {
    text-decoration: underline;
}

/*
Groupe de boutons
*/
.btn-group {
    display: flex;
    justify-content: space-between;
}