.blu_newsletter_form {
    display: flex;
    gap: 20px;

    width: min(400px, 90vw);
    margin: auto;
}

.blu_newsletter_form__response,
.blu_newsletter_form__heading {
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.blu_newsletter_form__response {
    font-size: 18px;
}

.blu_newsletter_form input {
    border-radius: 5px;
}

.blu_newsletter_form button {
    white-space: nowrap;
    padding: 8px 15px;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #AFCB3B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blu_newsletter_form button:hover {
    background: #8aaa2f;
    box-shadow: none;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .blu_newsletter_form {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blu_newsletter_form button {
        width: 100%;
    }
}