* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: sans-serif;
	background: #1D1E20 !important;
	user-select: none;
	overflow-x: hidden;
}

a {
	color: #666;
	font-size: 14px;
	display: block;
}

.logo {
	object-fit: contain;
	margin-top: 4rem;
}

.login_title {
	flex-basis: 100%;
	color: #fff;
	font-weight: 200 !important;
	font-size: 39px !important;
	font-family: "Segoe UI",Arial,sans-serif;
	font-weight: 400;
	margin: 10px 0;
}

@media (min-width: 1028px) {
	#main_container {
		display: flex;
		height: 100vh;
	}

	.right_side {
		display: flex !important;
	}

	.left_side {
		display: flex;
		flex-wrap: wrap;
		width: 35%;
	}

	.form_container {
		width: 75%;
	}

	.logo {
		display: none;
	}
}

::-moz-placeholder {
	color: #999;
	opacity: 1
}

::-ms-input-placeholder {
	color: #999
}

::-webkit-input-placeholder {
	color: #999
}

@media (max-width: 1024px) {
	.right_side {
		display: none !important;
	}

	.footer {
		margin-left: -40px;
	}

	.logo {
		margin-top: 0 !important;
	}
}

.left_side {
	height: 80vh; /*100*/
	padding: 50px;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
}

	.left_side a {
		margin-top: 18px;
		color: #fff;
		cursor: pointer;
		text-decoration: none;
		width: 100%;
		font-family: 'Nunito' !important;
	}

		.left_side a:hover {
			color: #ffe7e5;
		}

.form_container label {
	text-align: left;
	display: block;
	color: #fff;
}

.footer {
	position: fixed;
	bottom: 2px;
	color: #999;
	font-size: x-small;
	width: 100%;
	font-family: 'Nunito' !important;
}

.right_side {
	width: 70%;
	padding: 40px;
	background: url('../img/background.jpg') no-repeat;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	align-content: baseline;
	flex-direction: row;
}

	.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 #E3A200;
	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;
	}