/*initially we show nothing but the login page*/
div#page-login {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #ffda00;
}
div#page-login-bgimage {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
div#page-login-card {
	position: absolute;
	width: 300px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	border-radius: 10px;
	text-align: center;
}
div#page-login-card-logo {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
img#page-login-card-logoimg{
	width: 160px;
}
.login-input{
	border-radius: 6px;
	font-family: hroman;
	font-size: 14px;
	background-color: #f4f7f9;
	border: 1px, solid #e8e8ea;
	width: 250px;
	padding-left: 15px;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-bottom: 10px;
}
div.page-login-btn {
	position: relative;
	color: white;
	font-family: hex;
	font-size: 14px;
	height: 43px;
	width: 250px;
	background-color: #171d1c;
	align-content: center;
	transition: all .3s ease 0ms;
	border-radius: 6px;
	left: 50%;
	transform: translateX(-50%);
}
div.page-login-btn:hover {
	color: #171d1c;
	background-color: #ffda00;
}
