.news_letter_subscription {
    position: relative;
    display: flex;
    padding: 104px 16px;
    flex-direction: column;
    gap: 40px;
}

.news_letter_subscription::before {
    content: "";
    max-height: 140px;
    background-image: url("../images/Vector (1).svg");
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
    top: 70%;
    left: 0;
    right: 0;
    bottom: 0;
}

.input-group {
    display: flex;
    align-items: center;
}


.input {
    font-family: "Cairo", sans-serif;
    min-height: 50px;
    max-width: 266px;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    background-color: #ffffff;
    border: none;
    font-size: 16px;
    color: #AFB0B9;
}

.button--submit {
    font-family: "Cairo", sans-serif;
    padding: 12px 36px;
    min-height: 50px;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background-color: #FEE002;
    color: #121212;
    text-align: center;
}

.input:focus, .input:focus-visible {
    outline: none;
}


@media  screen and (min-width: 760px){
    .news_letter_subscription {
        align-items: center;
    }

    .input {
        max-width: 800px;
    }
    .news_letter_subscription p {
        font-size: 20px;
    }
}