.newsletter {
    margin: 2em auto 3em;
}

@media screen and (max-width: 768px) {
    .newsletter {
        width: 80%;
    }
}

@media screen and (max-width: 500px) {
    .newsletter {
        width: 90vw;
    }
}

input {
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border: 0;
    padding-left: 30px;
    width: 100%;
}

textarea {
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border: 0;
    padding-left: 30px;
    padding-top: 30px;
    margin-top: 1em;
    width: 100%;
}

.contactFormArea {
    width: 800px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
    .contactFormArea {
        width: 80%;
    }
    
    input {
        margin-bottom: 1em;
    }
    
    textarea {
        margin-top: 0;
    }
}

@media screen and (max-width: 500px) {
    .contactFormArea {
        padding-top: 2em;
        width: 100%;
    }
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#contact {
    margin-top: 60px;
}

input:focus {
    background: white;
    box-shadow: 0 3px 6px rgba(121,221,255,0.16), 0 3px 6px rgba(121,221,255,0.23);
    color: #212121;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.4rem + 3px);
}