@charset "utf-8";

/**
 * Display: Classic
 */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	background: #F5F7FA;
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: #929292;
}

input, textarea {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: #7d7d7d;
	outline: none;
}

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

a {
	text-decoration: none;
	color: #929292;
}

a img {
	border: 0px;
}

/**
 * Message
 */
#Message {
	position: fixed;
	height: 1px;
	top: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	z-index: 960;
}

#Message div {
	padding: 20px 20px;
	text-align: center;
	font-size: 16px;
	color: #FFFFFF;
}

#Message .SUCCESS { background-color: #27C24C; }
#Message .ERROR { background-color: #F05050; }
#Message .INFO { background-color: #FF902B; }

.LoginLanguage {
	margin-bottom: 15px;
	overflow: hidden;
}

.LoginLanguage a {
	margin-right: 1.6%;
	padding: 10px;
	width: 49.2%;
	text-align: center;
	float: left;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.LoginLanguage a.active {
	background: #E21F25;
	color: #FFF;
}

.LoginLanguage a:nth-child(2n) {
	margin-right: 0px;
}

/**
 * Page: Login
 */
#PageLogin {
	position: absolute;
	width: 310px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#PageLogin .Logo {
	text-align: center;
	font-size: 0px;
}

#PageLogin .Footer {
	margin: 30px auto 20px auto;
	width: 310px;
	text-align: center;
	display: block;
	clear: both;
}

#PageLogin .Form {
	background: #FFFFFF;
	margin: 0 auto;
	padding: 20px;
	position: relative;
	width: 310px;
	overflow: hidden;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#PageLogin .Form .Field {
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

#PageLogin .Form .Field i.fa {
	position: absolute;
	height: 36px;
	line-height: 36px;
	left: 15px;
	color: #909FA7;
}

#PageLogin .Form .Field input.t {
	border: solid 1px #DDE6E9;
	padding: 0px 15px 0px 36px;
	width: 100%;
	height: 36px;
	color: #666666;
	outline: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#PageLogin .Form .Field input.t:focus {
	border-color: #EB6909
}

#PageLogin .Form .Buttons {
	padding-top: 10px;
	overflow: hidden;
}

#PageLogin .Form .Buttons .l {
	border: 0px;
	height: 35px;
	line-height: 35px;
	font-size: 15px;
	color: #000000;
	float: left;
	cursor: pointer;
}

#PageLogin .Form .Buttons input.b {
	background-color: #EB6909;
	border: 0px;
	padding: 0px 15px;
	height: 35px;
	font-weight: bold;
	font-size: 12px;
	color: #FFFFFF;
	float: right;
	cursor: pointer;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#PageLogin .Form .Buttons input.b:hover {
	background-color: #D85E00;
}