/* This stylesheet contains styles that only pertain to the login page */

form {
	background-color: #C3D75F;
	padding: 2rem;
	border-radius: 20px;

}

form > div {
	margin: 1rem;
}

h1 {
	color: #DFC063;
	text-align: center;
}

#loginform, #forgotpassword {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#form_login_invalid {
	color: red;
	border-radius: 5px;
}

#form_login_reset {
	background-color: gold;
	color: black;
	border-radius: 5px;
}

#loadingoverlay {
	z-index: 999;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100vw;
	height: 100vh;
	background-image: url(/images/ripple.svg);
	background-attachment: fixed;
	background-position: center center;
	background-color: rgba(255, 255, 255, 0.60);
	background-repeat: no-repeat;
	text-align: center;
	font-size: 3em;
}
