html {
	height: 100%;
	width: 100%;
}

body {
	height: 100%;
	width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#loginMainContainer {
	min-height: 80vh;
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #d6fffa 85%, transparent 81%);
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	z-index: 2;
}

#loginMainContainer::after {
	position: absolute;
	background: #d6fffa;
	content: '';
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 15%;
	transform: skewY(-4deg);
	transform-origin: bottom left;
	z-index: 1;
}

#loginFormContainer {
	width: 40%;
	background: #fff;
	border: 1px solid #009E92;
	border-radius: 10px;
	max-height: 90%;
	padding: 20px 15px;
	z-index: 5;
}

#logoIcon,
#logoIconMob {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	text-align: center;
}

#logoIcon img,
#logoIconMob img {
	width: 300px;
}

#logoIconMob {
	display: none;
}

#logoIconText {
	text-align: center;
	font-weight: bold;
	font-size: 2.5rem;
	margin: 25px auto;
}

#loginFormTitle {
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
}

#loginFormContainer .formContainer.formBtns {
	justify-content: flex-end;
	margin-top: 20px;
}

#loginFormContainer .formContainer.formBtns .btn {
	width: 50%;
}

i.err {
	margin: 0 5px;
	color: #d03737;
	font-weight: bold;
	text-align: center;
	display: block;
	width: 100%;
}

.loginButton {
	border: 2px solid #009E92;
	color: #009E92;
	font-weight: bold;
	border-radius: 5px;
	padding: 10px;
	background: #fff;
	transition: .3s;
	cursor: pointer;
	font-size: 16px;
	font-family: "Metropolis";
}

.loginButton:hover,
.loginButton:active {
	background: #009E92;
	color: #fff;
}

.copyright {
	font-size: 12px;
	color: #555;
	margin-top: 10px;
	z-index: 300;
}

@media screen and (max-width: 1200px) {
	#loginFormContainer {
		width: 60%;
		margin-top: 0;
		max-height: 100%;
	}
}

@media screen and (max-width: 1000px) {
	#loginFormContainer {
		width: 60%;
		/* margin-top: 0; */
		/* max-height: 100%; */
		/* height: 100%; */
		/* overflow-y: scroll; */
	}
}

@media screen and (max-width: 700px) {
	#loginFormContainer {
		width: 100%;
		margin-top: 0;
		max-height: 100%;
		height: 100%;
		overflow-y: scroll;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
	}

	#logoIconMob {
		display: block;
	}

	#logoIcon {
		display: none;
	}

	.copyright {
		display: none;
	}
}