@CHARSET "UTF-8";

.login {
	position: relative;
	
	width: 100%;
	height: 100%;
	
	overflow: hidden;
}

.login .login_logo_bar {
	position: absolute;
	
	width: 150px;
	height: 100%;
	
	z-index: 10;
}

.login .login_logo_bar img {
	position: absolute;
	left: 50%;
	
	margin: 0;
	margin-right: -50%;
	
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
	
	border: none;
}

.login .login_logo_bar img:nth-child(1) {
	top: 20px;
}

.login .login_logo_bar img:nth-child(2) {
	bottom: 20px;
}

.login .login_logo_bar .mobile_head {
	position: relative;
	
	height: inherit;
	
	line-height: 50px;
	text-align: center;
	font-size: 1.1em;
	
	display: none;
}

.login .login_logo_bar_space {
	position: absolute;
	left: 150px;
	
	width: 30px;
	height: 100%;
	
	border: solid 5px;
	border-top: none;
	border-bottom: none;
	
	z-index: 10;
}

.login .login_form {
	position: absolute;
	top: 40%;
	left: 50%;
	
	margin: 0;
	margin-right: -50%;
	
	-webkit-transform: translate(-50%, -40%);
	-moz-transform: translate(-50%, -40%);
	-o-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    
    width: 350px;
    height: 145px;
    
    border: solid 1px;
    -webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	
	z-index: 20;
}

.login .login_form input:nth-child(3) {
	border-bottom: none;
}

.login .login_form input {
	margin-top: 0px;
}

.login .login_form .button_container {
	position: absolute;
	top: 0;
	right: 0;
	
	width: 20%;
	height: 100%;
}

.login .login_form .button_container button {
	position: absolute;
	top: 50%;
	right: 0;
	
	width: calc(100% - 10px);
	
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
	
	border: none;
}

.login .software_build {
	position: absolute;
	right: 20px;
	bottom: 10px;
}

.login footer.copy {
	position: absolute;
	right: 80px;
	bottom: 10px;
}