* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: sans-serif;
	background: #eef3f8 !important;
	user-select: none;
	overflow-x: hidden;
}

a {
	color: #666;
	font-size: 14px;
	display: block;
}

.logo {
	width: min(220px, 60vw);
	height: auto;
	max-height: 72px;
	object-fit: contain;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.login_title {
	flex-basis: 100%;
	color: #666;
	font-weight: 200 !important;
	font-size: 39px !important;
	font-family: "Segoe UI",Arial,sans-serif;
	font-weight: 400;
	margin: 10px 0;
}

#main_container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 20px 72px;
}

::-moz-placeholder {
	color: #999;
	opacity: 1
}

::-ms-input-placeholder {
	color: #999
}

::-webkit-input-placeholder {
	color: #999
}

@media (max-width: 1024px) {
	.logo {
		margin-top: 0 !important;
	}
}

.left_side {
	min-height: calc(100vh - 104px);
	width: min(100%, 480px);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.form_container {
	width: 100%;
	max-width: 420px;
}

	.left_side a {
		margin-top: 18px;
		color: #545454;
		cursor: pointer;
		text-decoration: none;
		width: 100%;
		font-family: 'Nunito' !important;
	}

		.left_side a:hover {
			color: #000;
		}

.form_container label {
	text-align: left;
	display: block;
	color: #666;
}

.footer {
	position: fixed;
	bottom: 2px;
	left: 0;
	color: #999;
	font-size: x-small;
	width: 100%;
	font-family: 'Nunito' !important;
}

.right_side {
	display: none !important;
}

	.right_side h1 {
		max-width: 420px;
		color: #FFF;
		text-align: right;
		padding: 0;
		margin: 0;
		font-family: Nunito !important;
	}

	.right_side p {
		max-width: 650px;
		color: #DDD;
		font-size: 15px;
		text-align: right;
		padding: 0;
		margin: 15px 0 0 0;
	}

:root {
	--transitionTF: cubic-bezier(0.645, 0.045, 0.355, 1);
	--inputTransitionDuration: var(--transitionDuration);
	--inputTransitionTF: var(--transitionTF);
}

/* TESTE */
@keyframes rotate-forever {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.loader {
	animation-duration: 0.75s;
	animation-iteration-count: infinite;
	animation-name: rotate-forever;
	animation-timing-function: linear;
	height: 30px;
	width: 30px;
	border: 8px solid #334d6e;
	border-right-color: transparent;
	border-radius: 50%;
	display: inline-block;
	margin-top: 10px;
}

.apps {
	display: inline-flex;
	bottom: 0;
	position: absolute;
	right: 0;
	bottom: 1px;
}

	.apps a {
		margin-right: 5px;
	}
