* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	cursor:default;
	font-family:"Helvetica";
	text-decoration:none;
}
*:focus {
    outline:none;
}
body {
	width:100vw;
	height:100vh;
	position:relative;
	display:flex;
	flex-direction:row;
	touch-action: pan-x pan-y;
	background: radial-gradient(circle at 30% 30%, #0a0a0a 0%, #111111 25%, #1a1a1a 45%, #242424 65%, #2e2e2e 80%, #333333 100%);
	background-attachment: fixed;
	background-size: cover;
	color:#EAEAEA;
}
	#main {
		width:100vw;
		height:100vh;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
	}
		#login_logo {
			width:auto;
			height:auto;
			margin:0px 0px 20px 0px;
			display:flex;
			flex-direction:column;
		}
			#login_logo img {
				width:200px;
				height:auto;
			}
		.login_div_inputs {
			width:300px;
			height:52px;
			margin:0px 0px 10px 0px;
			background:#F2F2F2;
			border-radius:0;
			box-shadow: 0 2px 6px rgba(0,0,0,0.18);
			position:relative;
			color:#333;
		}
			#login_div_text {
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px 0px 0px 15px;
				position:absolute;
				top:0px;
				left:0px;
				z-index:10;
				color:#555;
			}
			#login_input {
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px 0px 0px 15px;
				background:none;
				border-width:0px;
				position:absolute;
				top:0px;
				left:0px;
				z-index:11;
				color:#111;
			}
		.pass_div_inputs {
			width:300px;
			height:52px;
			margin:0px 0px 10px 0px;
			background:#F2F2F2;
			border-radius:0;
			box-shadow: 0 2px 6px rgba(0,0,0,0.18);
			position:relative;
			color:#333;
		}
			#pass_div_text {
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px 0px 0px 15px;
				position:absolute;
				top:0px;
				left:0px;
				z-index:10;
				color:#555;
			}
			#pass_input {
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px 0px 0px 15px;
				background:none;
				border-width:0px;
				position:absolute;
				top:0px;
				left:0px;
				z-index:11;
				color:#111;
			}
		.login_div_submit {
			width:300px;
			height:52px;
			margin:0px 0px 10px 0px;
			background: linear-gradient(180deg, #0f0f0f 0%, #2f2f2f 100%);
			border-radius:0;
			transition: background-color .2s ease, box-shadow .2s ease, color .2s ease;
			position:relative;
			text-align:center;
			font-weight:600;
			color:#FFF;
			cursor:pointer;
		}
			.login_div_text_submit {
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px;
				cursor:pointer;
			}
			.login_div_submit input {
				cursor:pointer;
				width:100%;
				height:52px;
				line-height:52px;
				padding:0px 0px 0px 15px;
				background:none;
				border-width:0px;
				position:absolute;
				top:0px;
				left:0px;
			}
		.login_div_inputs:hover,\n\t\t.pass_div_inputs:hover {\n\t\t\tbox-shadow: 0 3px 10px rgba(0,0,0,0.22);\n\t\t\tbackground:#F6F6F6;\n\t\t}\n\t\t.login_div_submit:hover {\n\t\t\tbackground:#3a3a3a;\n\t\t\tbox-shadow:0 0 0 1px #444 inset;\n\t\t}
		#login_mensagem {
			width:auto;
			height:52px;
			line-height:52px;
			color:#FFF;
		}
