#contactform,#newsletterform{
    padding: 0;
    margin: 0;
}

#contactform > label,
#contactform > input,
#contactform > textarea,
#newsletterform > label,
#newsletterform > input,
#newsletterform > textarea{
    display: block;
}


#contactform > input,
#contactform > textarea{

    background: #0000000a;
    border: 2px solid #00000036;
    padding: 5px;
    border-radius: 5px;
    margin-top: 4px;
}

#newsletterform > input{
    background: #0000000a;
    border: 2px solid #00000036;
    padding: 5px;
    border-radius: 5px;
    margin: 0;
    display: inline-block;
}

#contactform > input,
#newsletterform > input{
    width: 400px;
}

#contactform > textarea,
#newsletterform > textarea{
    width: 800px;
}

#contactform > label,
#newsletterform > label{
    font-size: 1em;
    font-weight: bold;
    margin-top: 12px;
}
#contactform > input[type=submit]{
    color: #fff;
    background-color: #4e79b6;
    border-color: #4e79b6;
    margin-top: 15px;
    width: 200px;
    transition: 0.4s;
}

#newsletterform > input[type=submit]{
    color: #fff;
    background-color: #4e79b6;
    border-color: #4e79b6;
    margin: 0;
    display: inline-block;
    width: 200px;
    transition: 0.4s;
}

#contactform > input[type=submit]:hover,
#newsletterform > input[type=submit]:hover{
    background-color: #3067ba;
    border-color: #3067ba;
}



h2:not(:first-of-type){
    margin-top: 30px;
}

#contact-message{
    display: none;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    #contactform > input,
    #contactform > textarea,
    #newsletterform > input,
    #v > textarea{
        width: 100%;
    }
    #media{
        text-align: center;
    }

    #contactform > input[type=submit],
    #newsletterform > input[type=submit]{
        width: 100%;
    }
    #newsletterform > input[type=submit]{
        margin-top: 5px;
    }
}

@media (min-width: 992px) and (max-width: 1500px) {
    #newsletterform > input[type=submit]{
        margin-top: -4px;
    }
}

@media (min-width: 1500px) {
    #newsletterform > input[type=submit]{
        margin-top: -4px;
    }
}

