@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
*{
	font-family: "Roboto", sans-serif;
}
html{
	height:100%;
	min-height:100%;
	max-height:100%;
}
body{
	margin:0;
	height:100%;
	min-height:100%;
	max-height:100%;
	background:#fff;
}
input{
	margin: 0;
	outline: none;
}
#loginForm{
	width: 300px;
	height: 246px;
	border: 1px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -125px;
	margin-left: -150px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 15px 15px -10px #000;
	-moz-box-shadow: 0px 15px 15px -10px #000;
	-webkit-box-shadow: 0px 15px 15px -10px #000;
}
#loginError{
	position: absolute;
	width:280px;
	background:#fff371;
	padding:5px;
	border:1px dashed #ec2424;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	top: 0px;
	font-size: 14px;
	text-align: center;
	margin-left: 4px;
	z-index: -1;
	color: #ec2424;
	transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-webkit-transition: 0.25s all ease-in-out;
}
#loginHead, #loginFoot{
	padding: 10px;
	background: #03AED2;
	color: #ead61c;
}
#loginHead{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	box-shadow: inset 0px 1px 0px #000;
	-moz-box-shadow: inset 0px 1px 0px #000;
	-webkit-box-shadow: inset 0px 1px 0px #000;
	text-shadow: 0px 2px 3px #918347;
}
#loginContent{
	padding: 15px 10px;
	background: #FEEFAD;
	min-height: 102px;
	font-size: 14px;
}
.fields{
	clear: both;
}
.fields input[type="text"], .fields input[type="password"]{
	width: 267px;
	padding: 10px 5px;
	font-size: 14px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #6b451c;
	margin-bottom: 10px;
	background: #68D2E8;
	color: #fefde5;
	transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-webkit-transition: 0.25s all ease-in-out;
}
.fields input[type="text"]:focus, .fields input[type="password"]:focus{
	border: 1px solid #464d40;
	box-shadow: 0px 0px 5px #464d40;
	-moz-box-shadow: 0px 0px 5px #464d40;
	-webkit-box-shadow: 0px 0px 5px #464d40;
	background: #fff;
	color: #2f332b;
}
.fields label{
	font-size: 14px;
}
.fields a{
	color: #807a55;
	font-size: 12px;
}
.fields a:hover{
	text-decoration: none;
}
#loginFoot{
	font-size: 14px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	-moz-border-bottom-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-bottom-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	height: 52px;
}
#loginButton{
	padding: 5px 20px;
	font-weight: bold;
	font-size: 16px;
	border: 1px solid #f9da03;
	background: #f9da03;
	color: #333;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin-bottom: 2px;
	cursor: pointer;
}
#loginButton:hover{
	background: #f9da03;
}
#loginButton:active{
	background: #555;
	border: 1px solid #000;
	text-shadow: none;
	box-shadow: 0px -1px 0px #111;
	-moz-box-shadow: 0px -1px 0px #111;
	-webkit-box-shadow: 0px -1px 0px #111;
}