.alert_newsletter {
    text-align: right;
    padding: 0 5px;
    margin-bottom: 5px;
    overflow-x: hidden;
}

.alert_newsletter_content {
    display: inline-block;
    width: 300px;
    max-width: 100%;
    font-size: .8rem;
    color: #000000;
    font-weight: 600;
    text-align: center;
    padding: 5px;
    margin-right: -310px;
    background-color: var(--color-background-green-opacity);
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.alert_newsletter_content.error {
    color: #000000;
    background-color: var(--color-background-red);
}

#newsletter-container {
    background-color: #F9BDC0;
}

.newsletter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding: 30px 0;
    gap: 10px;
}

.newsletter>div:has(p) {
    margin: 0 !important;
}

.newsletter h6 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter p strong {
    color: #252525;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;

}

.newsletter p span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #252525;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#add_contact_news input {
    font-size: 0.75rem;
    color: #757575;
    background-color: #F6F6F6;
    border: none;
    box-shadow: none;
    padding: 15px 20px;
    height: auto;
    border-radius: 10px;
}

#add_contact_news input::placeholder {
    font-size: 0.875rem;
    color: #757575;
}

#add_contact_news button {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 500;
    background-color: #252525;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    border: none;
    border-radius: 10px;
    padding: 10px 35px;
    height: auto;
}

#add_contact_news button:hover {
    background-color: #252525cc;
    transition: .3s;
    transform: scale(1.05);
}

/*
1300px
*/
@media (max-width: 81.25em) {
    .newsletter p {
        font-size: .875rem;
        margin-bottom: 0;
    }

    #add_contact_news input,
    #add_contact_news button {
        font-size: .75rem;
        padding: 15px;
    }
}

/*
768px
*/
@media (max-width: 48em) {
    .newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter p {
        text-align: center;
    }

    #add_contact_news input {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row > div {
        width: 100%;
    }

    .form-data {
        flex-direction: column;
        width: 100%;
    }

    #add_contact_news input {
        font-size: .75rem;
        padding: 15px 20px;
        margin: 10px 0;
    }

    #add_contact_news input::placeholder {
        font-size: .75rem;
    }

    #add_contact_news button {
        margin-top: 10px;
        width: 100%;
        font-size: .75rem;
        padding: 15px;
    }
}