@charset "UTF-8";
/* CSS Document */

#Login-Box {
	width:90%;
	height:auto;
	padding:2%;
	display: block;
	margin-top:25vh;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(#444, #222);
	border:1px solid #fff;
	box-sizing: border-box;
	text-align: center;
	font-size:16px;
}

#Login-Logo {
	width:100px;
	height:100px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	border-radius: 50%;
	overflow: hidden;
}

input[type="text"], input[type="password"] {
	width:90%;
	padding:5px;
	line-height: 1.5em;
	font-size:1em;
	text-align: center;
	display: block;
	margin:5px auto 5px auto;
	box-sizing: border-box;
	font-family: "RSU-Normal";
}

#frm-UnitID, #frm-MemberID {
	width:49%;
	display: inline-block;
}

.error_msg {
	padding:2px 1em;
	background-color:#f00;
	color:#fff;
}

#Notify {
	width:50%;
	max-width: 90%;
	margin-top:2em;
	padding:1em;
	background-color:rgba(0,0,0,0.6);
	color:#fff;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#Agreement-Box {
	width:90%;
	height:auto;
	padding:2%;
	display: block;
	margin-top:5vh;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(#AAA, #777);
	border:1px solid #fff;
	box-sizing: border-box;
	text-align: left;
	font-size:16px;
}


@media screen and (orientation:portrait) and (max-width:768px){
	#Login-Box {
		max-width: 500px;
	}
}

@media screen and (orientation:landscape) and (max-width:1024px){
	#Login-Box {
		max-width: 500px;
	}
}

@media screen and (orientation:landscape) and (min-width:1024px){
	#Login-Box {
		max-width: 500px;
	}
}