.formulario{
    background-image: url('../img/FondoCon.png');
    background-size: 100vw 100vh;
    background-attachment: fixed;
}

.contacto {
    width: 35%;
    margin: 10px auto;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 6px;
}

.contacto h2{
   color: whitesmoke;
   text-align: center;
   margin: 0;
   font-size: 30px;
   margin-bottom: 20px;
}

.contacto input , textarea, select, #borrar{
    color: #000;
    width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    padding: 7px;
    box-sizing: border-box;
    border: none;
}

.contacto select{
    font-size: 17px;
}

.contacto textarea{
    color: #000;
    font-size: 17px;
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
}

.contacto #boton{
    background: #5e5e5e;
    color: #000;
    padding: 20px;
}

.contacto #boton:hover{
    cursor: pointer;
}

@media (max-width:992px){
    .contacto{
        width:60% !important;
    }
}

@media (max-width:500px){
    .contacto{
        width:95% !important;
    }
}

