body{
	margin: 0;
	padding: 0;
	background-color: #f2f4f7;
	overflow-x: hidden;
}
.container{
	min-height: 100dvh;

	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

#side-content{
	width: 520px;
	background: #F1F4FDFF;

	display: flex;
	flex-flow: column nowrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	padding: 20px;


	font-family: var(--font-heading), var(--font-text), sans-serif;
	font-size: 40px;
	line-height: 56px;
	font-weight: 600;
	color: #4F70E9FF;
}
#side-content > img{
	max-width: 100%;
	object-fit: contain;
}

#main-content{
	flex: 1;
	background: white;

	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	padding: 20px;
	max-width: 100%;
}


.login-card{
	width: 400px;
	max-width: 100%;
	color: var(--black);
}


.login-logo{
	width: 350px;
	max-width: 100%;
	margin: auto;
}
.login-logo img{
	width: 100%;
}

.login-card .fancyInput{
/*	padding: 10px 20px;*/
	font-weight: 600;
	background-color: var(--color_neutral_white);
}

.login-card form{
	width: 100%;
}
.login-card form label{
	font-size: 0.7em;
	opacity: 0.9;
}
.login-card form .bigbtn{
	font-size: 0.9em;
	border-radius: 5px;
	font-weight: 400;
	padding: 15px;
/*	text-shadow: 0px 2px 2px rgba(0,0,0,0.2);*/
}

.login-card form .bigbtn:hover{
	transform: translateY(-1px);
}

.login-card .error{
	color: white;
	font-size: 0.8em;
	background-color: var(--failure);
	padding: 10px;
	width: 100%;
	text-align: center;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#left-panel{
	width: 400px;
	background-color: white;
	border-radius: inherit;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	margin-right: -20px;
}
#left-panel.right{
	margin-right: unset;
	margin-left: -20px;
	transform: rotateY(180deg);
}