@charset "utf-8";
/* CSS Document */


/*font-family: 'Comfortaa', cursive;  Cores, tema padrão: Bg= #5c3c3c;  text-button:#c27c7c;  logo: #fff; */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
}
/*tela-de-login*/

body{
	background-color: rgba(110,72,175,0.10);
	overflow: hidden;
	opacity: 1;
}

.resgate{
	width: 35% !important;
}

#tela-login{
	background: #9d50bf;
	background: -moz-linear-gradient(top,  #9d50bf 0%, #6e48af 100%);
	background: -webkit-linear-gradient(top,  #9d50bf 0%,#6e48af 100%);
	background: linear-gradient(to bottom,  #9d50bf 0%,#6e48af 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d50bf', endColorstr='#6e48af',GradientType=0 );
	width: 35%;
	height: auto;
	border-radius: 2px;
	margin: 5% auto auto auto;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
	padding: 30px 30px 30px 30px;
	opacity: 1;
}

.logo{
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
}

.logo img{
	width: 200px;
	height: auto;
	padding-bottom: 30px;
}

#tela-login p{
	color: #fff;
	font-family: 'Comfortaa', cursive;
	font-size: 16px;
	padding-bottom: 10px;
}

#tela-login form{
	width: 100%;
	height: auto;
}
input{
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	font-family: 'Comfortaa', cursive;
	font-weight: 100px;
	color: #6e48af;
	padding-left: 12px;
	border: 1px solid #fff;
	border-radius: 2px;
	background-color:#fff;
	transition: 0.5s;
}

input:focus{
	color: #fff;
	outline: none;
	background-color: #412276;
	border: 1px solid #412276;
}

.button-login{
	width: 100%;
	background-color: #412276;
	border: none;
	border-radius: 2px;
	font-family: 'Comfortaa', cursive;
	color: #cbb9ed;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
	font-size: 14px;
	padding: 15px 30px;
	cursor: pointer;
	display: block;
	transition: 0.5s;
}

.button-login:hover{
	color: #412276;
	background-color: #cbb9ed;
}

.esqueci-senha{
	width: 35%;
	color: #6e48af;
	padding: 15px;
	text-align: center;
	display:block;
	font-size: 18px;
	font-family: 'Comfortaa', cursive;
	margin: auto;
	border-bottom: 1px solid #6e48af;
}

.clear{
	clear: both;
}

.button-voltar img{
	width: 60px;
	height: auto;
	position: relative;
	display: inline-block;
	top: 0;
	left: 0;
	transition: 0.2s;
}

.button-voltar img:hover{
	left: -10px;
}

@media (max-width: 900px){

	body{
		width:100%;
		height:100%;
		background-color: #6e48af;
	}
	#tela-login{
		width: 98%;
		background: rgba(0,0,0,0);
		background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
		background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 100%);
		background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(0,0,0,0)', endColorstr='rgba(0,0,0,0)',GradientType=0 );
		box-shadow: none;
		margin-top: 20%;
	}

	.resgate{
		width: 100% !important;
	}
	.button-voltar{
		display: none;
	}
	.button-login{
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}

	.esqueci-senha{
		width: 98%;
		color: #fff;
	}
}