body {
	margin: 0px;
	padding: 0px;
	background: rgb(247, 247, 247);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	font-family: candara, arial, helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	overflow: hidden;

}

h1,
h2,
h3 {
	margin-top: 0px;
}

p,
ol,
ul {
	margin-top: 0px;
}

p {
	line-height: 170%;
}

ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

strong {}

a {
	color: red;
}

a:hover {
	text-decoration: none;
}

a img {
	border: none;
}

/** LOGO */

#logo {

	display: flex;
	justify-content: center;

}

#logo img {
	width: 252px;
	height: 68px;
}

/** box */

#box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 20px;
	box-sizing: border-box;
	/* IE6-9 */
}

#box form {
	display: flex;
	width: auto;
	flex-direction: column;
	justify-content: space-between;

}

#box .loginArea {
	border: none;
	display: flex;
	margin-top: 50px;
	padding: 0;
	flex-direction: column;
}

.loginArea legend {
	margin: 25px 0;
	text-align: center;

}

.campos-form {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}




/* Input Float */
.form-group {
	position: relative;
	margin-bottom: 1.5rem;
	width: 100%;
}

.form-group input {
	width: 100%;
	height: 45px;
	border-radius: 25px;
	border: solid 1px transparent;
	background: rgba(236, 236, 236, 0.96);
	outline: none;
	padding: 15px;
	box-sizing: border-box;
}

.form-control-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 0 0 30px;
	transition: all 200ms;
	opacity: 0.5;
}

.texto:focus+.form-control-placeholder,
.texto:valid+.form-control-placeholder {
	font-size: 75%;
	transform: translate3d(0, -100%, 0);
	opacity: 1;
	left: -18px;
}

.texto:focus {
	border: solid 1px rgb(204, 204, 204);

}

#box .texto {
	font-family: cambria, arial, helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px;
}

#box .botao {
	background: #bc3625;
	color: #FFFFFF;
	border: none;
	width: 100%;
	font-weight: 600;
	height: 50px;
	cursor: pointer;
	margin-top: 16px;
	float: right;
	border-radius: 25px;
	box-shadow: -10px 10px 10px rgba(255, 0, 0, 0.19), 0 17px 20px 0 rgba(255, 0, 0, 0.19);
	transition: ease-in-out .2s;
}

#box .botao:hover {
	box-shadow: 0 0 0 0 transparent;

}

#box .msg_erro {
	display: none;
	color: red;
	margin: 10px 0;
}

#campo_senha {
	clear: both;
}

/** rodape */
#rodape {
	margin: 0px auto;
}

#rodape p {
	margin: 0px;
	padding: 20px 0px 20px 0px;
	text-align: center;
	font-size: 14px;
	color: #AAA;
}

#rodape a {
	color: #EEE;
}

/** placeholder asterisk */
.spacing input {
	padding-left: 30px;
}

.asteriskInput {
	margin-bottom: 10px;
	position: relative;
}

.asteriskInput input:focus {
	background-color: #fff;
	outline: none;
	transition: all 200ms lianer;
}

.asteriskInputIcon {
	position: absolute;
	top: 16px;
	left: 12px;
	opacity: 0.6;
}

.textoPass:focus+.form-control-placeholder,
.textoPass:valid+.form-control-placeholder {
	font-size: 75%;
	transform: translate3d(0, -100%, 0);
	opacity: 1;
	left: -18px;
}

.textoPass:focus {
	border: solid 1px rgb(204, 204, 204);

}

@media screen and (min-width: 1024px) {


	#box .loginArea {
		flex-direction: column;
		width: 600px;
		justify-content: center;
		align-items: center;
		margin: 25px 0;
	}

	.campos-form {
		width: 282px;
	}


	#box .botao {
		width: 282px;
	}

	#box form {
		border-radius: 15px;
		background: #FFFFFF;
	}

	#logo {
		margin-top: 25px;
	}
}
