* {
	margin: 0px;
	padding: 0px;
}
body {
	font-family: 'tondo', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
#login {
	display: grid;
	grid-template-columns: 1fr;
	width: 100%;
	height: 100vh;
	align-items: stretch;
}
.leftbox {
	display: none;
}
.rightbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #409efc;
}
.formbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	min-height: 300px;
	padding: 40px 25px;
	background: #ffffffea;
	border: 1px solid #939393;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}
.formbox .logo {
	width: 200px;
}
.formbox form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	min-width: 320px;
}
.formbox form input, .formbox form select {
	padding: 14px;
	background-color: #fff;
	border: 1px solid #3e454c;
	border-radius: 8px;
	box-shadow: 0px 3px 3px #0000001a;
}
.formbox .primary {
	align-self: center;
	width: 165px;
	height: 40px;
	margin-top: 25px;
	background: #409eff;
	color: #fff;
	border: 1px solid #80bfff;
	cursor: pointer;
	box-shadow: 0px 3px 3px #00000029;
	font-size: 1.25rem;
}






/* BOF Loader */
#loader {
	vertical-align: middle;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	background: #ffffffd9;
	z-index: 999999;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
}
#loader span {
	display: block;
	width: 20px;
	height: 20px;
	background: #eee;
	border-radius: 50%;
	margin: 0 5px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
#loader span:nth-child(2) {
	background: #f07e6e;
}
#loader span:nth-child(3) {
	background: #84cdfa;
}
#loader span:nth-child(4) {
	background: #5ad1cd;
}
#loader span:not(:last-child) {
	animation: animate 1.5s linear infinite;
}
@keyframes animate {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(30px);
	}
}
#loader span:last-child {
	animation: jump 1.5s ease-in-out infinite;
}
@keyframes jump {
	0% {
		transform: translate(0, 0);
	}
	10% {
		transform: translate(10px, -10px);
	}
	20% {
		transform: translate(20px, 10px);
	}
	30% {
		transform: translate(30px, -50px);
	}
	70% {
		transform: translate(-150px, -50px);
	}
	80% {
		transform: translate(-140px, 10px);
	}
	90% {
		transform: translate(-130px, -10px);
	}
	100% {
		transform: translate(-120px, 0);
	}
}
/* EOF Loader */