@import url('https://fonts.googleapis.com/css?family=Roboto:100');

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	}

body{
	display:flex;
	min-height:100vh;
	background:url(../Imagenes/banner1.jpg) no-repeat;
	background-position:center;
	background-attachment:fixed;
	background-size:100% 100%;
	-webkit-background-size:100% 100%;
	-moz-background-size:100% 100%;
	-o-background-size:100% 100%;
	-ms-background-size:100% 100%;
	}
main{
	margin:auto;
	width:50%;
	max-width:500px;
	background:#F3F3F3;
	padding: 2.3em;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	}
header{
	width:100%;
	text-align:center;
	}
header img{
	width:130px;
	height:50px;
	}
.content-form{
	width:90%;
	margin:auto;
	}
.content-form h1{
	text-align:center;
	font-size:1.8rem;
	}	
.content-form h4{
	text-align:center;
	font-size:1em;
	margin-top:20px;
	}
.content-form h4 a{
	color:#0061ea;
	margin-left:10px;
	}	
.content-form form{
	width:100%;
	margin:auto;
	margin-top:30px;
    }
.alert{
	margin-top:40px;
	color:#b70e21;
	}	
	
/*Email*/	
.content-form .lbl-email{
	position:absolute;
	margin-top:10px;
	font-size:20px;
	}
#email{
	width:100%;
	padding:10px;
	border-style:none;
	outline:0px;
	border-bottom: 1px solid #e2e2e2;
	}
#email:focus{
	border-bottom: 2px solid #0061ea;
	-webkit-transition:all 300ms;
	transition:all 300ms;
	}
/*Contraseña*/	
.content-form .lbl-password{
	position:absolute;
	margin-top:30px;
	font-size:20px;
	}
#password{
	width:100%;
	padding:10px;
	border-style:none;
	outline:0px;
	border-bottom: 1px solid #e2e2e2;
	margin-top:20px;
	}
#password:focus{
	border-bottom: 2px solid #0061ea;
	-webkit-transition:all 300ms;
	transition:all 300ms;
	}
	
/*content-check*/
.content-check{
	margin-top:40px;
	}

.content-check a{
	float:right;
	color:#0061ea;
	}

/*Boton de inisio de sesion*/

input[type="submit"]{
	padding: 10px 50px;
	font-size:20px;
	background:white;
	color:#28a9fa;
	font-weight:bold;
	border-style:none;
	border-radius:10px;
	margin-top:40px;
	border: 1px solid #28a9fa;
	-webkit-transition:all 300ms;
	transition:all 300ms;
	outline:0px;
	}
input[type="submit"]:hover{
	background:#28a9fa;
	color:white;
	cursor:pointer;
	-webkit-transition:all 300ms;
	transition:all 300ms;
	}
input[type="submit"]:active{
	background:#6dc5fc;
	-webkit-transition:all 100ms;
	transition:all 100ms;
	}		