@charset "UTF-8";

/* CSS Formularios */

label {
  font-size:18px; 
  margin-left:10px;
  line-height:25px;
  font-family: 'Port Lligat Sans', sans-serif;
}

input, textarea {
  width:95%;
  height:25px;
  font-size:16px;
  font-weight:bold;
  color:#555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border:1px solid #ccc;
  padding:0 5px;
  margin-left:3px;
}

textarea {
  height:150px;
  resize:none;
}

input:hover, textarea:hover {
  background-color:#FFFFF0;
}

input:focus, textarea:focus {
  -webkit-box-shadow: 0px 0px 5px #1C86EE;
  -moz-box-shadow: 0px 0px 5px #1C86EE;
  box-shadow: 0px 0px 5px #1C86EE;
}

.boton-enviar {
  width:100px;
  background-color:#FFF;
  color:#0B96F7;
  cursor:pointer;
  border:solid 1px #0B96F7;
}

.boton-enviar:hover {
  background-color:#0B96F7;
  color:#FFF;
}

.empresa {
	font-size:1.2em;
}

.obligatorio {
	color:#F00;
	font-style:italic;
}