body, html{
	padding: 0;
	margin: 0;
	font-family: 'montserrat';
	overflow: hidden;
}
.txR{
	text-align: right;
}


.login__bg{
	position: fixed;
	width: 100%;
	height: 100%;
	background: url('../../img/img1.jpeg') center center no-repeat;
	background-size: cover;
	background-position-y: -207px;
}
.login_bloco{
	width: 500px;
	background: #255baa;
	margin: 0 auto;
	margin-top: 10%;	
	padding: 40px;
	border-radius: 20px;
	box-shadow: 4px 8px 8px rgb(0,0,0,0.4);
}
.login_titulo{
	color: #fff;
	text-align: center;
	font-size: 30px;
}
.login_subtitulo{
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin-bottom: 30px !important;
}





.login_bloco-input{
	color: #fff;
}
.login_bloco-input i{
	position: absolute;
    margin-top: 19px;
    font-size: 25px;
    margin-left: 18px;
}

.login_input{
	width: 100%;
	padding: 20px 15px 20px 60px;
	border: none;
	border-radius: 10px;
	color: #fff;
	background: #2137C2;
	box-shadow: 1px 4px 8px rgb(0,0,0,0.2);
	font-size: 20px;
	margin-bottom: 25px;

	transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transition-property: all;
}
.login_button{
	width: 200px;
	padding: 17px;
	border: none;
	border-radius: 50px;
	color: #fff;
	font-size: 20px;
	background: #ED5C0C;
	cursor: pointer;
	transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transition-property: all;
    box-shadow: 1px 4px 8px rgb(0,0,0,0.2);
}

.login_button:hover{
	background: #A14310;
	box-shadow: 1px 7px 8px rgb(0,0,0,0.4);
}


.login_input:focus{
	outline: none;
	box-shadow: 1px 7px 8px rgb(0,0,0,0.4);
}

.login__error{
	margin-top: -10px;
    margin-right: 5px;
    color: #f3a800;
    font-style: italic;
}



::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
  font-style: italic;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #ccc;
}


@media screen and (max-width: 615px){
	.login_titulo, .login_subtitulo{
		color: #292929;
	}
	.login__bg{
		position: fixed;
		width: 100%;
		height: 100%;
		/*background: #255baa;*/
	}
	.login_bloco{
		width: 90%;
		background: transparent;
		margin: 0 auto;
		margin-top: 10%;	
		padding: 0px;
		padding-top: 30px;
		border-radius: 20px;
		margin: 0 auto;
		box-shadow: none;
	}
	.login_subtitulo{
		font-size: 13px;
		color: #292929;
	}
	.login_button{
		padding: 20px;
		width: 100%;
	}
	.login_bloco-input{
		color: #666;
	}
	.login_input {
	    background: #fff;
	    color: #292929;
	}


}