a{
    text-decoration: none;
}
footer{
    min-height: 40vh;
    background: #ddd;
    align-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer form *{
    display: block;
    margin: auto;
}
.footer__container{
    width: 80%;
    margin: 8vh auto;
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 2vh;
}

form input, form textarea{
    border: none;
    border-bottom: 2px solid black;
    background-color: transparent;
    width: 80%;
    padding: 2vh;
}
form input::placeholder, form textarea::placeholder{
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-align: center;
    font-weight: bold;
}
form input:focus, form textarea:focus{
    outline: none;
    background-color: #bbb;
}
form input[type="submit"]{
    background-color: rgb(118, 207, 236);
    border: none;
    padding: 2vh;
    margin-top: 2vh;
}
form input[type="submit"]:hover{
    cursor: pointer;
}
textarea{
    height: 12vh;
    resize: none;
}
.redes{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.redes a{
    display: block;
    color: #000;
    font-size: 2vh;
}
.redes a:hover{
    color: rgb(118, 207, 236);
}
@media (max-width: 700px){
    .footer__container{
        background-color: #ddd;
        display: flex;
        flex-direction: column;
        font-size: 1.5vh;
        width: 100%;
        margin: auto;
    }
    .footer__container form{
        margin-top: 5vh;
    }
}