body {
	background-color: #323232;
	font-family: 'Inter', sans-serif;
	color: #c0c0c0;
	margin: 0;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.loginCont {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	width: 100%;
	max-width: 400px;
	z-index: 10;
	opacity: 1;
}
.loginBack {
	background: rgba(0, 0, 0, 0.3);
	padding: 40px;
	border-radius: 6px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.formLogin, select {
	width: 100%;
	padding: 10px 14px;
	margin-top: 10px;
	border: 1px solid #555;
	background: #333;
	color: #fff;
	font-size: 14px;
	border-radius: 3px;
}
.formLogin:focus, select:focus {
	border-color: #19a2dc;
	outline: none;
}
.submit {
	background-color: #19a2dc;
	color: white;
	border: none;
	padding: 10px 20px;
	margin-top: 20px;
	cursor: pointer;
	width: 100%;
	border-radius: 3px;
	font-size: 14px;
	transition: background-color 0.3s ease;
}
.submit:hover {
	background-color: #34b0e4;
}
.error {
	background: #a00;
	padding: 10px;
	color: white;
	text-align: center;
	border-radius: 4px;
	margin-bottom: 15px;
}
.loginVersion {
	text-align: center;
	margin-top: 20px;
	font-size: 11px;
	color: #c0c0c0;
}

/* ----- OLD BACKGROUND + SVG + ANIMATION ----- */
.background {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 90vw;
	height: 130vh;
	min-height: 600px;
	min-width: 1000px;
}
.background svg {
	width: 100%;
	height: 100%;
	transform: rotate(-12deg);
}
.background.red #logoBg {
	fill: #3c3535 !important;
	opacity: 1;
}
#logoBg {
	fill: #3a3a3a;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-name: logo;
	transition: all 300ms ease-in-out;
}
@keyframes logo {
	0% {opacity: 1;}
	75% {opacity: 1;}
	100% {opacity: 1;}
}
/* To prevent scrollbars */
html, body {
	overflow: hidden;
}