@charset "UTF-8";
/* CSS Document */
body
	{
		background: #FF0000;
		color: #FFF;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	font-family: 'Lato', sans-serif;
	}

html,body {
  width: 100%;
  overflow-x: hidden;
}

a:link {
	color: #FFF;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}

#registro {
	padding-top: 50px;
	padding-bottom: 50px;
}

.inputBox{
	position: relative;
	box-sizing: border-box;
	margin-bottom: 50px;
}
.inputBox .inputText{
	position: absolute;
    font-size: 14px;
    line-height: 50px;
    transition: .5s;
    opacity: .5;
}
.inputBox .input{
	position: relative;
	width: 100%;
	height: 50px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 24px;
    border-bottom: 1px solid #FFF;

}
.focus .inputText{
	transform: translateY(-30px);
	font-size: 18px;
	opacity: 1;
	color: #FFF;

}
textarea{
	height: 100px !important;
}

.logo {
	padding-bottom: 40px;
}

.panel-lapista {
	background: #ebb512;
}

.panel-body {
	color: #000;
	text-align: justify;
}

/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  color: #ddd;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#formulario {
	padding-top: 50px;
	padding-bottom: 50px;
	color: #FFF;
}

.lapista_table {
	background: #F88300;
	color: #FFF;
}