.button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    text-decoration: none;
}

.button-white,
.button-default {
    background-color: #fff;
    color: #222;
}

.button-white:hover,
.button-default:hover {
    background-color: #a37ecc;
    color: #222;
}

.button.icon::before {
    margin-right: 10px;
    background-color: #222;
}

.button-default {
   border: 1px solid #222; 
}