
.contacto h2{
    
    border-radius: 5px;
    color: #fff;
    display: block;
    font-family: arial;
    font-size: 10px;
    padding: 1px;
   
}

/*--- estilos para los ul y li del formulario ---*/
.contacto ul {
    width:100%;
    list-style: none;
    text-align: center;
    margin:2%;
    padding:0px;
}
.contacto li{
    padding:1em; 
    display: block;
    vertical-align: top;
    position:relative;
    width:100%;
}
.contacto label {
    color: #ccc;
    display:block;
    float: left;
    font-family: sans-serif;
    font-size: 1em;
    
    width:20%;
}
/*----- estilos visuales de los elementos --------*/
.contacto input, .contacto textarea { 
  width:70%;
   border: 0.1em solid #57abb8;
  border-radius: 0.25em;
  color: #F60;
  display: block;
  font-family: Helvetica,Verdana;
  font-size: 1em;
  padding: 0.2em;
  
    
}
.contacto textarea {
  height: 5em;
}
/* === Estilos de Validacion === */ 


/* === Estilos del boton de Envio === */
button.submit {
    padding: 9px 17px;
   font-family: Helvetica, Arial, sans-serif;
   font-weight: bold;
   line-height: 1;
   color: #444;
   margin-left: 5%;
   border: none;
   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.85);
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#bbb));
   background-image: -moz-linear-gradient(0% 100% 90deg, #BBBBBB, #FFFFFF);
   background-color: #fff;
   border: 1px solid #f1f1f1;
   border-radius: 10px;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
button.submit:hover {
    
    cursor: pointer; 
    color: #900000;
}
button.submit:active {
    border: 1px solid #222;
    box-shadow: 0 0 10px 5px #444 inset; 
}

@media(max-width: 1080px) {

.contacto h2{
  width:100%;
}
.contacto ul{
  width:100%;
}
.contacto li{
  width:100%;
}
.contacto label{
  width:20%;
}
.contacto input textarea{
  width: 70%;
}

}

@media(max-width: 800px) {

.contacto h2{
  width:100%;
}
.contacto ul{
  width:100%;
}
.contacto li{
  width:100%;
}
.contacto label{
  width:20%;
}
.contacto input textarea{
  width: 70%;
  
}

}

@media(max-width: 600px) {

.contacto h2{
  width:100%;

}
.contacto ul{
  width:100%;
}
.contacto li{
  width:100%;
}
.contacto label{
  width:100%;
  font-size:1em;
  display: block;
}
.contacto input {
  width: 100%;

}
.contacto textarea {
  height: 3em;
  width: 100%;
  display: block;
}
}