@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Jura:500');
@import url('https://fonts.googleapis.com/css?family=Fredoka+One');
@import url('https://fonts.googleapis.com/css?family=Fredericka+the+Great');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body, html{
	font-family: 'Jura', sans-serif;
	margin-top: 60px;
	font-size:12px;
	line-height: 1.3;
}

a{
	color: rgba(0, 0, 0, 1.0);
}
a:hover{
	font-weight: 800;
	color: rgba(150, 150, 150, 1.0);
}

p{
	font-size: 12px;
	font-weight: 800;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 1.0);
}

div{
	margin: 0px;
	padding: 0px;
}

.text-code{
	position: relative;
	top: 10px;
	font-size: 16px;
	text-shadow: 1px 1px 3px rgba(200,200,200, 1.0);
}

.text-code p{
	font-size: 14px;
}

.alert{
	border: solid 2px rgba(255, 255, 255, 1.0);
	box-shadow: 1px 1px 10px rgba(255, 228, 103, 1.0);
}

.alert-danger{
	color: rgba(255, 255, 255, 1.0);
	font-size: 14px;
	font-weight: 800;
	background: rgb(228, 105, 105);
}

.msg-alertas{
	position: absolute;
	top: 5px;
	opacity: 1.0;
}

.btn-primary{
	border: rgba(200, 200, 200, 1.0);

	font-size: 14px;
	font-weight: 800;

	-moz-box-shadow: 0px 0px 5px #7a7a7a;
	-webkit-box-shadow: 0px 0px 5px #7a7a7a;
	box-shadow: 0px 0px 5px #7a7a7a;
}

.btn-login{
	color: #ffffff;
	background-color: #D73B4A;
	border: rgba(200, 200, 200, 1.0);

	font-size: 14px;
	font-weight: 800;
}

.btn-login:hover{
	color: #ffffff;
	background-color: #92212c;
	border: rgba(200, 200, 200, 1.0);
}

#tpanel{
	opacity: 1.0;
	z-index: 50;
}

.login-container{
	position: relative;
	padding: 20px 40px 40px;
	text-align: center;
	border: 1px solid rgba(255,255,255, 1.0);

	background-color: rgba(248,248,248, 1.0);
	box-shadow: 1px 1px 3px rgba(0,0,0, 0.5);
}

.login-container > div > img{
	margin: 10px;
}

.form-box input{
	width: 100%;
	padding: 10px;
	text-align: center;
	height:40px;
	border: 1px solid #ccc;;
	background: #fafafa;
	transition:0.2s ease-in-out;

}

.form-box input:focus{
	outline: 0;
	background: #eee;
}

.form-box input[type="text"]{
	border-radius: 5px 5px 0 0;
	text-transform: lowercase;
}

.form-box input[type="password"]{
	border-radius: 0 0 5px 5px;
	border-top: 0;
}

.form-box button.login{
	margin-top:15px;
	padding: 10px 20px;
	outline: none;
}

.captcha{
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}
.captcha input {
	border: 0px;
	border-radius: 5px;
}
.captcha span {
	padding: 0px;
}
.captcha > span > i{
	margin: 5px 2px;
}