*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*=============== COLOR DE INICIAR SESIÓN =============*/
h3{
	font-family: 'Arial';
	font-size: 25pt;
	letter-spacing: 1px;
	width: 100%;
	background: #2980b9;
	padding: 15px;
	color: #FFF;
	text-align: center;
	text-transform: uppercase;

}
/*=============== CONTAINER DE LOGIN CENTRANDO =============*/
#container{
	background: #5d6b7e;
	width: 100%;
	height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*=============== COLOR DE FONDO DE LOGIN =============*/
#container form{
	background: #FFF;
	width: 400px;
	padding: 10px;
}

#container form img{
	margin: 15px auto;
	text-align: center;
	display: block; /** CENTRAR IMAGEN  **/


}
#container form input{
	width: 90%;
	padding: 5px;
	font-size: 16pt;
	display: block;
	margin: 25px auto;
	border-radius: 5px;
	border: 1px solid  #85929e;
	text-align: center;
	
}

#container form input[type="submit"]{
	background:  #52be80;
	padding: 10px;
	color: #FFF;
	letter-spacing: 1px;
	border: 0;
	cursor: pointer;  /*  MANITA DE CURSOR */
}
.alert{
	font-family: 'Arial';
	font-size: 16px;
	text-align: center;
}

section{
	background: url(logo.png) no-repeat;
	background-size:cover;
	background-position: center;
	height: calc(100vh-80px);
}