footer {
    background: rgb(182,159,43);
    background: linear-gradient(180deg, rgba(182,159,43,1) 0%, rgb(162, 163, 82) 100%);
    padding: 30px 0;
    position: relative;
    box-shadow: -1px -11px 27px -15px rgba(0,0,0,0.75);
    -webkit-box-shadow: -1px -11px 27px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px -11px 27px -15px rgba(0,0,0,0.75);
}

div.footer-container {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

div.footer-inner {
   text-align: center;
} 

div.footer-logo {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    width: 200px;
}

form input.btn {
    background-color: #75671f;
    border: 1px solid #5c511b ;
}

form input.btn:hover {
    background-color: #5c511b;
}

div.credito {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: .8rem;
}

div.credito a {
    color: white;
    text-decoration: underline;
}

@media only screen and (max-width: 760px){
    div.footer-inner {
        width: 70%;
    }

    div.footer-inner:first-child {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 480px){
    div.footer-inner {
        width: 90%;
    }

    div.credito {
        position: static;
        width: 100%;
        text-align: center;
    }
}