/* CSS Document */

body {
	background:url('/common/images/bgLogin.jpg') #330000;
	background-repeat: no-repeat;
	background-size: cover;
	position:relative
}
#wrap {
	width:100%;
	position: absolute;
	top: 50%;
	transform: translateY(50%)
}
#login {
	width:calc(40% - 40px);
	margin:auto;
	padding:20px;
	text-align:center;
	background:#DDDDDD;
	border:solid 1px #0000CC;
	border-radius:10px;
}
#login > img {
	width:100px;
}
#login > form {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
}
#login > form > dl {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
}
#login > form > dl > dt,dd {
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
}
h1 {
	width:100%;
	margin:auto;
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-bottom:0px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.error {
	color:#FF0000;
	font-weight:bold;
}
input[type="text"],input[type="password"],
textarea {
	color:#333;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:16px;
	line-height:2em;
	padding:0 1em 0 1em;
}
input[type="text"]:focus,input[type="password"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #1abc9c;
	border: 1px solid #1abc9c;
	font-size:16px;
	line-height:2em;
	padding:0 1em 0 1em;
}
input[type="submit"] {
	margin:10px;
	color:#fff;
	background-color:#5e5d61;
}

/* ������������������������������      Moile CSS @media screen and (max-width: 800px)   ������������������������������*/
@media screen and (max-width: 800px) {
#wrap {
	position: absolute;
	top: 10%;
	transform: translateY(10%)
}
dd {
	margin-inline-start: 0px;
}
#login {
	width:calc(100% - 30px);
	padding:5px;
}
h1 {
	width:calc(100% - 100px);
}
input[type="text"],input[type="password"],
textarea {
	width:calc(100% - 100px);
	font-size:18px;
	line-height:2em;
	padding:0.5em 1em 0.5em 1em;
}
input[type="text"]:focus,input[type="password"]:focus,
textarea:focus {
	width:calc(100% - 30px);
	font-size:18px;
	padding:0.5em 1em 0.5em 1em;
}
}