/* GET FEEDBACK */
#feedback-cta {
    position: fixed;
    bottom: 50vh;
    right: 10vw;
    z-index: 1000;
}

.button-style {
    display: block;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 1em 1em 1.2em;
    max-width: 320px;
    font-size: 1.1rem;
    line-height: 1.3em;
    background-color: white;
}
.button-style:hover {
    border: 1px solid black;
    cursor: pointer;
}
.button-style strong {
    position: relative; /* <-- important */
    font-weight: 400;
    color: black;
}

.button-style strong::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* descend la ligne sous le texte */
    width: 100%;
    height: 3px;
    background-color: black;
}

.button-style:hover strong::before {
    left: -4px;
    width: 110%;
    height: 26px;
    background-color: lightyellow;
    z-index: -1;
    border-bottom: 2px solid black;
}
