html, body{
	display: inline-block;
	position: relative;
	height: 100%;
	width: 100%;
	min-width: 450px;
	min-height: 250px;
	background-color: #222A32;
	color: #777777;
}
.loader
{
	display: inline-block;
	width: 42px;
	height: 42px;
	border: 5px solid #555D64;
}
#screen
{
	width: 100%;
	height: 100%;
	white-space: nowrap;
}
.login_container{
	display: inline-block;
	width: 100%;
	height: 250px;
	white-space: normal;
	text-align: center;
}
.login{
	display: inline-block;
	width: 450px;
	height: 100%;
	text-align: left;
	background-color: #EDF5F9;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
}
.form_row{
	height: 44px;
	padding: 5px 30px;
	line-height: 34px;
	text-align: center;
}
.form_row.form_head{
	background-color: #0F7FAF;
	height: 60px;
	line-height: 50px;
	font-size: 20px;
	color: #EDF5F9;
	margin-bottom: 10px;
	text-align: center;
}
.form_row > div{
	display: inline-block;
}
.form_row label{
	color: #AAAAAA;
	font-weight: normal;
	cursor: pointer;
}
.form_row .form_input
{
	position: relative;
	width: 290px;
	text-align: center;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #AAAAAA;
	outline: none;
}
form.error .form_row .form_input
{
	border-bottom: 1px solid #FF0000;
	background-color: #EFDDE1;
}
.form_row .form_input::after
{
	content: " ";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: red;
}
.form_row .form_input:focus::after
{
	width: 100%;
}
.form_row .form_button{
	width: 290px;
	text-align: center;
	color: #EDF5F9;
	border: 0;
	outline: none;
}
.form_row .form_button:not([disabled]),
.form_row .form_button:not([disabled]):active,
.form_row .form_button:not([disabled]):focus
{
	background-color: #0F7FAF;
}
.form_row .form_button:not([disabled]):hover
{
	background-color: #0C709A;
}
.form_row .form_button[disabled]
{
	background-color: #3B95BD;
}