.newsletter {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter__input input {
    border-radius: 50px;
    height: 46px;
    font-size: 16px;
}

.newsletter__input button {
    width: 100%;
    padding: 14px 15px 15px 15px;
    margin-top: 10px;
}

.newsletter__input button:after {
    position: relative;
    top: 0;
    transform: unset;
    right: 0;
    display: inline-block;
    margin-left: 8px;
}

.newsletter-arrow-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 132px;
    height: 134px;
    z-index: -1;
    opacity: 0.2;
}

.newsletter .btn-secondary:hover {
    padding-right: 25px;
}


@media(min-width: 768px) {
    .newsletter-arrow-icon {
        width: 382px;
        height: 388px;
    }

    .newsletter__input {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 auto;
    }

    .newsletter__input button {
        width: auto;
        padding: 14px 20px 15px 20px;
        margin-top: 0;
    }

    .newsletter__input input {
        width: 100%;
    }


}

@media (min-width: 1200px) {
    .newsletter-arrow-icon {
        width: 360px;
        height: 365px;
        left: 50%;
        transform: translate(-50%, 0);
        margin-left: -600px;
        top: 3px;
    }
}