#cont_contacto
{
    background: var(--color-complementario);
    display: flex;
    align-content: center;
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

#cont_contacto form input, #cont_contacto textarea
{
    width: 600px;
    height: 25px;
    border: none;
    background: white;
    display: block;   
    margin-bottom: 4px;
    border-radius: 7px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7vw;
    font-weight: 600;
    padding-left: 20px;
}

#cont_contacto textarea{height: 200px}

#cont_contacto img 
{
    width: 200px;
    height: auto;
    margin:50px 0 50px 0;
}

#cont_contacto form button 
{
    width: 100px;
    border: none;
    background: white;
    height: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7vw;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 25px;
}

#cont_contacto form button:hover
{
    transition: all ease 1.2s;
    border: 1px solid white;
    background: #a6cd38;
    color: white;
}



@media screen and (max-width:768px) 
{
    #cont_contacto form input, #cont_contacto textarea
    {
        width: 80vw;
        height: 5vw;
        font-size: 3vw;
    }

    #cont_contacto textarea
    {
        height: 30vw;
    }
    
    #cont_contacto form button
    {
        font-size: 2vw;
    }

    #cont_contacto form 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
}