@charset "UTF-8";

body {
	padding: 0;
	margin: 0;
	color: #808080;
	position:relative;
}
#wall {
	position:relative;
	padding:0;
	margin:0;
	min-width: 100vw;
	min-height: 100vh;
	background:#f5fffd;
	z-index: 0;
	overflow: hidden;
	justify-content: center;
    align-items: center;
    min-width: 375px;
}
#wall-bottom{
	height: 100vh;
	z-index: 0;
}
#wall-bottom > div {
	padding:0;
	margin:0;
}

#wall-bottom > div:nth-child(1) {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height: 218px;
	z-index: 1;
	background-size: cover;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../imgs/login/wall-bottom-1.png");
}

#wall-bottom > div:nth-child(2) {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index: 2;
	height: 106px;
	background-size: cover;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../imgs/login/wall-bottom-2.png");
}
#loginInputArea {
	width:100%;
	-webkit-box-shadow: 10px 10px 150px -15px rgba(0,0,0,0.50);
	-moz-box-shadow: 10px 10px 150px -15px rgba(0,0,0,0.50);
	box-shadow: 10px 10px 150px -15px rgba(0,0,0,0.50);
}
#loginInputArea > div {
	maring: 0;
	padding: 0;
}

#loginInputArea input::placeholder,
#loginInputArea input:-ms-input-placeholder,
#loginInputArea input::-ms-input-placeholder,
#loginInputArea input::-webkit-input-placeholder {
	position: relative;
	color: #C1C1C1;
}

#usernameInput, #passwordInput  {
	background-color:#ffffff;
	width:100%;
	height:60px;
	border: 0px;
	padding:20px;
}
#usernameInput {
	border-bottom: 1px solid #dce2f0;
	border-radius:2px 2px 0 0;
}
#passwordInput {
	border-radius:0 0 2px 2px;
}

#loginArea {
	width: 450px;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-75%) translateX(-50%);
    z-index: 999;
}

#loginTitle {
	font-size: 24px;
	font-weight: 800;
	font-style: italic !important;
}
#logoAndBodySpace {
	height: 50px;
}
#loginBody{
	position: relative;
}
#loginMsgDiv{
	height: 30px;
}
#btnDiv{
	position: absolute;
	right: -50%;
    bottom: 40px;
}

#loginBtn {
	min-width: 100px !important;
	height:46px;
	background-color: #7dbf77;
	color:#FFF;
	border-radius:2px;
    box-shadow: 5px 5px 5px rgba(40%,40%,40%,0.6);
}
#loginBtn:hover {
	box-shadow: 1px 1px 1px rgba(40%,40%,40%,0.8);
}

.ms-loading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
    background-color: rgba(0,0,0,0.15);
}

.ms-loading > div {
	position: absolute;
	left: 50%;
    top: 50%;
    transform: translateY(-75%) translateX(-50%);
}


@media (min-width:400px) and (max-width:600px){
	#loginArea {
		width: 80%;
	}
	#logoAndBodySpace {
		height: 30px;
	}
	#loginTitle {
		font-size: 20px;
	}
}
@media (max-width:400px) {
	#logoAndBodySpace {
		height: 20px;
	}
	#loginArea {
		width: 70%;
	}
	#loginTitle {
		font-size: 16px;
	}
	#loginInputArea {
		width: 100%;
	}
	#loginBtn {
		min-width: 60px !important;
	}
}
@media (max-height:470px) {

	#logoDiv img {
		visibility: hidden;
	}
}
