:root {
    --newsletter-inputfield-height: 55px;
}

.newsletter {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #F2F4F5;
    padding: 40px 0;
}

.newsletter_sz {
    display: flex;
    width: calc(100% - 20px);
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter_left {
    width: calc(50% - 10px);
}

.newsletter_left h2 {
    color: #000000;
    line-height: 1;
    font-family: "Source Serif 4", serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.newsletter_left p {
    line-height: 1.33;
    font-family: "IBM Plex Sans", serif;
    font-weight: 400;
    font-size: 20px;
    margin: 4px 0 0 0;
    color: #000000;
}

.newsletter_right {
    display: flex;
    width: calc(50% - 10px);
    height: var(--newsletter-inputfield-height);
    align-items: center;
    background: #FFFFFF;
    border-radius: 10px;
    justify-content: space-between;
}

.newsletter_right_env {
    display: flex;
    width: var(--newsletter-inputfield-height);
    height: 100%;
    align-items: center;
    justify-content: center;
}

.newsletter_right_form {
    display: flex;
    width: calc(100% - calc(2 * var(--newsletter-inputfield-height)));
    height: var(--newsletter-inputfield-height);
}

#form_footer_newsletter_email {
    width: 100%;
    height: var(--newsletter-inputfield-height);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
    font-size: 16px;
    color: #9D9D9D;
    outline: none;
}

#form_footer_newsletter_email::placeholder {
    color: #9D9D9D;
}

#form_footer_newsletter_email_submit {
    display: none !important;
}

.newsletter_right_send {
    display: flex;
    width: var(--newsletter-inputfield-height);
    height: var(--newsletter-inputfield-height);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    :root {
        --newsletter-inputfield-height: 45px;
    }

    .newsletter {
        padding: 20px 0;
    }

    .newsletter_sz {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter_left {
        width: 100%;
        text-align: center;
    }

    .newsletter_left h2 {
        font-size: 20px;
    }

    .newsletter_left p {
        font-size: 16px;
    }

    .newsletter_right {
        width: 100%;
        height: var(--newsletter-inputfield-height);
    }

    .newsletter_right_env {
        display: none;
    }

    .newsletter_right_form {
        width: calc(100% - var(--newsletter-inputfield-height));
        height: var(--newsletter-inputfield-height);
    }

    #form_footer_newsletter_email {
        height: var(--newsletter-inputfield-height);
        font-size: 14px;
        text-indent: 10px;
    }

    .newsletter_right_send {
        width: var(--newsletter-inputfield-height);
        height: var(--newsletter-inputfield-height);
        background-color: #C80023;
        border-radius: 10px;
    }
}
