@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
	box-sizing: border-box;
}

body,
html {
	width: 100%;
	height: 100%;
	letter-spacing: 0.02em;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	font-family: "Poppins", sans-serif, Arial, Helvetica;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

.login .logo_lcs {
	display: flex;
	justify-content: center;
}

.logo_lcs img {
	width: 200px;
	margin-top: 20px;
	padding: 10px;
}

.wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 20px;
	border-radius: 2px;
}

#formContent {
	-webkit-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	background: #ffffff8f;
	padding: 30px;
	width: 90%;
	position: relative;
	padding: 0px;
	-webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
	text-align: center;
	max-width: 650px;
	align-self: center;
	min-height: 530px;
}

button[type=submit], .sso-button {
	background-color: #036891;
	border: none;
	color: white;
	padding: 15px 80px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(25, 98, 84, 0.4);
	box-shadow: 0 10px 30px 0 rgba(25, 98, 84, 0.4);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

button[type=submit]:hover, .sso-button:hover {
	background-color: #ade9ff;
	color: #023548;
}

button[type=submit]:active, .sso-button:active {
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-o-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}

.sso-separator {
	margin: 15px 0;
	color: #666;
}

.sso-button {
	margin-bottom: 20px;
}

input[type=text],
input[type=password] {
	background-color: #ecf8fc;
	border: none;
	color: #0d0d0d;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 5px;
	width: 85%;
	border: 2px solid #b5e5fb;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

input[type=text]:focus {
	background-color: #fff;
	border-bottom: 2px solid #036891;
}

input[type=text]:placeholder {
	color: #cccccc;
}

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;

	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;

	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
}

.fadeIn.first {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.fadeIn.second {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.fadeIn.third {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.fadeIn.fourth {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
	margin-top: 20px;
}

.fadeIn.fifth {
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@media (max-width: 500px) {
	.logo_lcs img {
		width: 270px;
	}

	#formContent {
		max-width: 450px;
	}

	input[type=submit], .sso-button {
		padding: 15px 25px;
	}
}


@media print {
	@page {
		margin: -5px 0px;
		size: a4 landscape;
		padding: 0px 0px 0px 0px !important;
		width: 29.7cm;
		height: 21cm;
	}

	* {
		overflow: visible !important;
	}

	body,
	page[size="A4"] {
		margin: 0;
		box-shadow: 0;
	}
}