*{margin: 0; padding: 0;}

html, body {height: 100%}

body {
	background: url('../img/bg.png');
	background-size: 100% 100%;
}

.btn {
	background: #9db034;
	border: none;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin: 40px auto 20px auto;
	padding: 20px;
	width: 60%;
}

.container {
	align-items: center;
	background-color: #fff;
	display: flex;
	justify-content: center;
	height: 100%;
	margin-left: 50%;
	width: 50%;
	box-shadow: 0px 0px 15px #555;
}

.continuar-logado {
	color: #868d90;
	display: block;
	font-family: sans-serif;
	font-size: 17px;
	text-align: center;
	width: 100%;
}

.choice {
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none; 
	cursor: pointer;
	position: relative;
}

.choice::before {
	border: 2px solid #9db034;
	bottom: 3px;
	content: "";
	display: inline-block;
	height: 10px;
	left: -22px;
	position: absolute;
	width: 10px;
}

.choice::after {
	bottom: 1px;
	content: "✓";
	color: #9db034;
	font-size: 20px;
	left: -21px;
	position: absolute;
	opacity: 0;
}

[type='checkbox'] {display: none}

[type='checkbox']:checked + .choice::after {opacity: 1 !important}

[type='text'], [type='password'] {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #868d90;
	color: #868d90;
	display: block;
	font-size: 23px;
	height: 50px;
	margin: 30px auto;
	text-align: center;
	text-indent: 10px;
	width: 60%;
}

[type='text']:focus, [type='password']:focus {
	border-color: #9db034;
	color: #9db034;
	outline: none;
}

[type='text']:focus::-webkit-input-placeholder { color: #9db034; }
[type='text']:focus:-moz-placeholder { color: #9db034; }
[type='text']:focus::-moz-placeholder { color: #9db034;  }
[type='text']:focus:-ms-input-placeholder {  color: #9db034; }

[type='password']:focus::-webkit-input-placeholder { color: #9db034; }
[type='password']:focus:-moz-placeholder { color: #9db034; }
[type='password']:focus::-moz-placeholder { color: #9db034;  }
[type='password']:focus:-ms-input-placeholder {  color: #9db034; }

img { max-width: 100% }

.logo {	
	display: block;
	margin: 0 auto; 
	width: 80%; 
}

[disabled] {opacity: 0.5}

.form-horizontal {position: relative;}

.help-block {
	background-color: rgba(231, 76, 60, .3);
	border: 1px solid #e74c3c;
	position: absolute;
	right: 25%;
	top: -40px;
	width: 50%;
	padding: 5px;
	font-family: sans-serif;
	font-weight: normal;
	text-align: center;
}

@media(max-width: 600px) {
	body {
		background: url('../img/bg-mobile.png');
	}
	.container {
		background-color: rgba(255,255,255,.8);
		height: 80%;
		margin-top: 15%;
		margin-left: 7.5%;
		width: 85%;
		border-radius: 10px;
	}

	[type='text'], [type='password'] {
		width: 70%;
	}

	.logo {
		width: 95%;
	}
	.btn {
		width: 70%;
		padding: 10px;
	}
	
	.help-block {
		width: 80%;
		right: 8%;
	}
}

/* Cor de fundo do autocomplete */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Cor do texto do autocomplete */
input:-webkit-autofill {
    -webkit-text-fill-color: #868d90;
}