body{
	display: flex;
	/*flex-direction: column;*/
	justify-content: center;
	align-items: center;
	background-image:url("../IMG/bg.png");
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	font-family:sans-serif;
}
#logo{
	position: absolute;
	top:15px;
	z-index: -1;
	background-image:url("../IMG/Logo1W.png");
	background-size: contain;
	background-repeat: no-repeat;
	width:500px;
	height:150px;

}
.error{
	padding:15px 25px;
	width:500px;
	border:2px solid #703232;
	background:#F5ABAB;
	text-align: center;
	border-radius: 15px;
	margin-bottom:15px;
}
#loginContainer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background:rgba(255,255,255,.5);
	border-radius: 15px;
	padding:15px;
}
h2{
	font-size:28px;
}
form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin:0;
}
input{
	border:1px solid #999;
	border-radius: 5px;
	text-align: center;
	padding:2px 5px;
	margin:5px 0;
	font-size: 22px;
}
#submitBtn, #resetBtn{
	cursor: pointer;
	background:#eee;
	color:#000;
	transition:.5s all;
	padding:5px 15px;
	border:1px solid #000;
}
#submitBtn:hover, #resetBtn:hover{
	background:transparent;
}





#newUserBtn{
	text-decoration: underline;
	cursor: pointer;
	margin-top:10px;
	color:#000;
	transition: .3s all;
}
#newUserBtn:hover{
	text-decoration: none;
	color:rgba(0,0,0,.5);
}

#newUserDiv{
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(255,255,255,.4);
}
#newUserDiv.active{
	display: flex;
}

#newUserForm{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background:#fff;
	border:1px solid #aaa;
	border-radius: 10px;
	padding:15px;
}
#newUserSubmitBtn{
	border:1px solid #000;
	border-radius: 10px;
	padding:5px 10px;
	cursor: pointer;
	transition: .5s all;
}
#newUserSubmitBtn:hover{
	background:#eee;
}