.buttonMenu {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #ffffff;
    background-color: #bf1e2d;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.buttonMenu:hover {
    background-color: #ffffff;
    box-shadow: 0px 15px 20px rgb(209, 211, 212);
    color: #000000;
    transform: translateY(-7px);
}
.buttonMenu:active {
    transform: translateY(-1px);
}

/*
.buttonLogin {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #bf1e2d;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #bf1e2d;
}

.buttonLogin:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid rgba(255, 255, 255, 0.74);
    box-shadow: 4px 5px 17px -4px #ffffff;
}

.buttonLogin::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #bf1e2d;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.buttonLogin:hover::before {
    width: 250%;
}


*/
.buttonLogin {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color: white;
}

.buttonLogin:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.buttonLogin:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.buttonLogin::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.buttonLogin::after {
    background-color: #fff;
}

.buttonLogin:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}