/* 
	CSS of Page Login.
	Marcos André
*/

* {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	outline: none;
	transition: all .23s ease-in-out;
}

body {
	background-color: #1f232a;
	color: #333;
}

.image_company img {
	width: 250px;
	height: 250px;
	margin-top: 25px;

}

h1 {
	color: #FFF;
	display: block;
	margin: auto;
	width: 90%;
	text-align: center;
	padding-top: 10vh;
	padding-bottom: 10vh;
}

span,
strong {
	text-align: left;
	color: #004074;
}

form.log {
	margin-bottom: auto;
	width: 90%;
	max-width: 500px;
	min-height: 755px;
	border-radius: 5px;
	background: #FFF;
	margin-left: -150px;
	text-align: center;


}

form.log p {
	font-size: 19pt;
	font-weight: bold;
	margin-bottom: 5px;

}

form.log input.field {
	display: block;
	margin: auto;
	width: 90%;
	border: 1px solid #CCC;
	background: #FFF;
	border-left: 5px solid #004074;

}

.field::placeholder {
	color: #004074
}

form.log button {
	display: block;
	width: 90%;
	margin: auto;
	padding: 10px 7px;
	font-weight: bold;
}

button{
	background-color: #004074;
	color: #f3f3f3;
	
}

form.log a {
	display: block;
	margin: auto;
	width: auto;
	text-align: center;
	text-decoration: none;
	color: #666;
	margin-top: 10px;
	font-size: 12pt;
	cursor: pointer;
	font-weight: bold;
}

form.log a:hover {
	color: #2196f3;
}

form#register.log {
	display: none;
}

p#credits {
	display: block;
	margin: auto;
	text-align: center;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #FFF;
	font-size: 12pt;
	font-style: italic;
}

/*

End of CSS

*/