.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.newsletter_title {
    font-size: 30px;
    margin-bottom: 15px;
    font-family: 'gotham';
}

.newsletter_form {
    display: flex;
    flex-direction: column;;
}

.newsletter_form_box {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin: 5px 0;
}

.newsletter_form_box label {
    text-align: left;
}

.newsletter_form_input {
    padding: 10px;
}

.newsletter_form_checkbox {
    margin: 0 7px 0 0;
    filter: sepia(1) brightness(1);
}

.btnSendNewsletter {
    background-color: #D86018;
    color: #FFFFFF;
    border: none;
    font-size: 14px;
    padding: 10px 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.btnSendNewsletter:hover {
    background-color: #8d3f0f;
}

@media all and (max-width: 1100px) {
    .newsletter {
        width: auto;
    }
}

@media all and (max-width: 540px) {
    .newsletter {
        width: 90%;
    }   
}