html,body{
	height: 100%;	
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
}
#canvasdot{
  width: 100vw;
 	height: 100vh;
	position: fixed;
	opacity: .3;
}

body{
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(0deg, #c0d4e2 0%, #e6eef4 100%);
	background-attachment: fixed;
}
body::after{
	content: "";
	background: url(../img/simulado.svg) no-repeat;
	/* background: red; */
	background-size: cover;
	position: fixed;
	width: 75vw;
	height: 100vh;
	top: 0;
	right: 0;
	opacity: .1;
}
#login{
	width: 100%;
	max-width: 900px;
	margin: auto;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	padding: 40px;
	border-radius: 10px;
}
#login .login{
	padding: 0;
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
	width: 100%;
	max-width: 45%;
	z-index: 10;
}
#login h1{
	margin: 0;
	text-align: center;
	font-size: 4.4rem;
	color: #00b000;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}
#login span{
	margin: 20px 0 -20px;
	line-height: 1;
	text-align: center;
	color: #537084;
	font-size: 1rem;
}
#login h2{
	margin: 20px 0 0;
	text-align: center;
	font-size: 1.4rem;
	color: #537084;
	font-weight: 500;
}
#login p{
	margin: -5px 0 10px;
	line-height: 1;
	text-align: center;
	color: #537084;
	font-size: 1rem;
}

#login .logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 30px;
	grid-gap: 15px
}
#login .logo img{
	width: 70%
}

#login .banner{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	width: 100%;
	height: 100vh;
}
#login .banner img.foto{
	display: block;
	height: 100vh;
	position: fixed;
	width: auto;
}
#login .banner img.logomarca{
	width: 90%;
	margin-top: -20%;
	margin-left: 10%;
}

#login form{
	padding: 0px 0 10px;
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
	width: 100%;
}
#login form label{
	font-size: 1rem;
	color: #537084;
	width: 100%; 
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	user-select: none;
}
#login form input.uk-input,
#login form input.uk-input:focus{
	border: none;
	text-align: center;
	font-size: 1rem !important;
	background: #FFF;
	color: #537084;
	border-radius: 3px !important;
	font-weight: 400 !important;
}
#login form input::placeholder{
	color: rgba(43, 51, 74, 0.3) !important;	
	font-size: 1rem !important;
}
#login form .lembrar{
	display: flex;
	align-items: center;
	grid-gap: 5px;
	justify-content: center;
	color: #537084;
	user-select: none;
}
#login form input.uk-checkbox{
	border-color: #8ca1b2;
	margin: -1px 0 0;
	border-radius: 2px;
}
#login form input.uk-checkbox:checked{
	border-color: #00b000;
	background-color: #00b000;
}
#login form label legend{
	width: 100%;
	margin-bottom: 2px;
}
#login form input:-webkit-autofill{
	font-size: 1rem !important;
	box-shadow: inset 0 0 0 20px #FFF;
	-webkit-text-fill-color: #537084;
	transition: background-color 5000s ease-in-out 0s;
	border-radius: 3px !important;
	font-weight: 400 !important;
}
#login form button{
	border-radius: 3px !important;
	margin-top: 10px;
	background: #00388a;
	width: 100%;
	border: none;
	color: #FFF;
	user-select: none;
	font-size: 1rem;
}
#login form button:hover{
	background: #00388a;	
}
#login form button:disabled{
	background: rgba(83, 112, 132, 0.2);
}
#login a{
	margin: 15px 0 0;
	display: flex;
	font-weight: 600;
	align-items: center;
	grid-gap: 10px;
	justify-content: center;
	line-height: 1;
	color: #293945;
	font-size: 1rem;
	user-select: none;
}
#login a.suport{
	margin: 0;
	border-radius: 20px !important;
	background: none;
	padding: 10px 20px;
	border: solid 1px #9cb2c3;
}
#login a:hover{
	color: #345164;
	background: rgba(255,255,255,.1);
}

#progress{
	position: fixed;
	top: 0;
	opacity: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 30px;
}
.progress{
	opacity: 0;
	position: fixed;
	top: 0;
	margin: 20px auto 0;
	width: 100%;
	text-align: center;
	user-select: none;
	color: #537084;
	font-size: 1rem;
	font-weight: 600;
}
.uk-progress{
	border-radius: 0px !important;
	background: #e8f0fe;
}

.uk-alert-warning {
    background: #fff6ee;
    color: #faa05a;
	border-radius: 5px;
	text-align: center;
}

@media screen and (max-width: 720px) {
	#login{
		padding: 0 30px;
		margin: 0;
		flex-direction: column-reverse;
	}
	#login .login{
		padding: 0 0 10px;
		display: flex;
		flex-direction: column;
		grid-gap: 10px;
		width: 100%;
		max-width: 100%;
	}
	#login form{
		min-width: 100%;
		max-width: 100%;
	}
	#login .banner{
		display: none;
	}
	#login .logo img.nome{
		display: block;
	}
}