/* estilos para los formularios de inscripción */ 
/* Style inputs */
input[type=checkbox]{
  border: 1px solid #aaa;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 2px 2px #ddd;
  width: 1.3em;
  height: 1.3em;
  cursor: pointer;
}
input[type=text], input[type=email]{
  width: 88%;
  padding: 7px;
  margin: 1px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  box-shadow: 3px 3px #ddd;
}
/* Style the label to display next to the inputs */
.etiqueta {
  padding: 6px 3px 3px 2em;
  display: inline-block;
}

.inscripcion {
  padding: 0.2em .77em;
  font-size: .88em;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #000;
  border-radius: 6px;
  box-shadow: 6px 6px #ddd;
}

.inscripcion:hover {
  background-color: #ddd;
}

.inscripcion:active {
  background-color: #bbb;
  box-shadow: 3px 3px #999;
  transform: translate(3px,3px);
}

fieldset {
	border: 1px solid #777;
	padding: 1em;
	width: 77%;
	font-size: .9em;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 8px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 8px;
}







/********************BORRAR: *************************************************************/



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1200px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  input[type=text], input[type=email]{
	margin: 0 1em 2em 3em;
	padding: 2px;
}
  .etiqueta {
	padding: 1px 3px 0px 2em;
}
  fieldset {
	width: 95%;
	font-size: .98em;

}

}


