*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body{
	width: 100%;
	height: 100%;
}

body{
	position: absolute;
	background: #fff;
	font-family: arial;
	font-size: 13px;
	color: #000;
}

#entrada{
	background-position: top center;
	background-repeat: no-repeat;
}

#contenedor{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#loginForm
{	
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
	width:100%;
	height:400px;
	background-color: #d8d9da;
	border:0;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
}

#loginForm .logo{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
}

#loginFomr .logo img{
	display: block;
	width: 95%;
	height: auto;
}

#loginForm p{
	text-align: center;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: bold;
	background-color: #353535;
	border-radius: 5px;
	color: #fff;
	min-width: 300px;
	max-width: 350px;
	padding: 4px;
}

#loginForm input[type=email],
#loginForm input[type=password]
{
	display: block;
	color: #353535;
	width: 300px;
	height: 24px;
	font-size: 16px;
	text-align: center;
	border: 0;
	border-bottom:1px solid #ccc;
	background-color: transparent;
}

#loginForm button[type=submit]
{	
	display: block;
	width: 300px;
	height: 40px;
	font-size: 16px;
	border: 1px solid #fff;
	background-color: #007564;
	color: #fff;
}

#loginForm input[type=email]::placeholder,
#loginForm input[type=password]::placeholder
{
	color: #555555;
}

#message{
	display: flex;
	align-items: center;
	justify-content: center;
	width:300px;
	height: 50px;
	padding: 4px;
	font-size: 14px;
	border:1px solid #ccc;
	color: #fff;
	text-align: center;
}

#message.hide{
	visibility: hidden;
}

#message.show{
	visibility: visible;
}

.success{
	background-color: #007500;
}

.error{
	background-color: #750000;
}