.contact-form {
    background-color: white;
    border-radius: 20px;
    margin-top: 48px;
    margin-bottom: 250px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 120px;

    label {
        font-size: 18px;
        font-weight: 700;
        line-height: 170%; /* 30.6px */
    }

    .form-item-telephone label::after,
    .form-item-entreprise label::after
    {
        content:" - optionnel";
        font-weight: 400;
    }

    textarea,
    input {
        border-radius: 10px;
        background: var(--color-white);
        width: 100%;
        border: none;
        height: 45px;
        padding: 11px 23px;
    }
    textarea {
        height: 162px;
    }


    #edit-actions{
        display: flex;
        justify-content: end;
    }
    .cta.webform-button--submit.button {
        color: var(--color-dark);
        border-radius: 40px;
        height: 80px;
        background-color: var(--color-brand);
        background-image: url("../../images/arrow-left.png");
        background-repeat: no-repeat;
        background-position: right 5% bottom 50%;
        z-index: 2;
        width: 172px;
        border: 2px solid var(--color-brand);
        text-align: left;
    }
    .cta.webform-button--submit.button:hover {
        background-color: var(--color-white);
        border: 2px solid black;
    }
    #editactions::after{
        position:absolute;
        width: 56px;
        height: 56px;
        content: "";
        display: block;
        
        background-size: contain;
        right: 10px;
        bottom: 12px;
        z-index: 0;
    }
}

@media all and (min-width: 1000px) {
    .contact-form {
        padding-top: 92px;
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 45px;
    }
}