@import url("https://fonts.googleapis.com/css?family=Hind:300,400,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind", sans-serif;
  color: #545454;
  line-height: 1.2em;
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
  cursor: pointer;
  color: #81a7bf;
}

#formulario {
  max-width: 420px;
  margin: 5px auto;
}

#form1 {
  padding: 10px;
  display: block; /* Cambiado de table a block para mejor control de floats */
  margin: auto;
}

/* //////////// FORMULARIO - INPUTS //////////// */

/* Aplicamos 16px a todos los campos de texto y tel */
#form1 input[type=text], 
#form1 input[type=tel],
.textareas {
  font-size: 16px; /* Tu petición */
  font-family: 'Hind', sans-serif;
  background: #ffffff;
  border-radius: 3px;
  border: none;
  padding: 13px;
  margin-bottom: 10px;
  box-shadow: inset 0px 2px 3px rgba(0,0,0,0.1);
  color: #484a4b;
  width: 100%; /* Por defecto ocupan todo */
  display: inline-block;
  vertical-align: top;
}

/* Para que en escritorio salgan 2 por fila */
/* Usamos el contenedor .inputs o .inputs2 para agruparlos */
#form1 .inputs input[type=text], 
#form1 .inputs input[type=tel],
#form1 .inputs2 input[type=text] {
  width: 48%; /* Dos por fila con margen */
  margin-right: 2%;
  float: left;
}

/* Limpiar floats para que no se rompa el diseño */
.inputs::after, .inputs2::after {
  content: "";
  display: table;
  clear: both;
}

.headerform h3 {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

/* //////////// BOTONES //////////// */
#btnverde {
  background: #9ac55c;
  width: 300px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px auto;
  line-height: 40px;
  border-radius: 5px;
  display: block;
 border:0
}
.terms{font-size:12px;}
input[type="checkbox" i] {margin-top:5px}


.loading{text-align:center; font-size:.9em; padding:50px 0}


.Alertas{background:url(closeAlert.png) left center no-repeat #D80A0E; padding:10px 5px 10px 40px; color:#ffffff; font-size:.9em;margin:0px 0 5px 0; width:95%; max-width:500px; position:absolute; z-index:3; line-height:20px }

.Alertas:hover{cursor:pointer;background:url(closeAlert.png) left center no-repeat #B70E11;}

#ErrorNombre, #ErrorTel, #ErrorTel1, #ErrorClau,#ErrorEmail, #ErrorEmail2, #ErrorNGeneral, #ErrorEmpresa{display:none}

.graciastxt{text-align:center; padding:3em}

.homeform{width:47%;}
/* //////////// RESPONSIVE //////////// */
@media only screen and (max-width: 380px) {
  #form1 .inputs input[type=text], 
  #form1 .inputs input[type=tel],
  #form1 .inputs2 input[type=text] {
    width: 100%; /* En móviles vuelven a ocupar toda la fila */
    margin-right: 0;
  }
    .headerform{padding-top:20px}
  #formulario {
    max-width: 95%;
  }
.homeform{width:100%;}


}


