
.mw-button-style {
    align-items: center;
    appearance: none;
    background-color: #ed2985;
    border: 0;
    border-radius: 9999px; /* This gives a fully rounded appearance */
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 24px;
    padding: 8px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-out;
    width: 135px;
}

.mw-button-style:hover {
    background-color: #c42177;
}