@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');

*{
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
}

body{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background-image: url('../imagenes/fondo.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#login{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0,22,137,0.25)
}

#login > img{
	width: 15%;
	margin: -2% 0 4% 3%;
	align-self: flex-start;
}

#login > form{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 10px 5%;
	width: 30%;
	height: 65%;
	background: #fff;
	border-radius: 10px;
}

#login > form > h1{
	font-size: 2.5em; 
	font-weight: normal;
	color: #001689;
	margin: 10px 0 -10px 0;
}

#login > form > div{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#login > form > div:nth-of-type(1){
	margin: 25px 0 -25px 0
}

#login > form > div > label{
	width: 25%;
	color: #333;
	font-weight: normal;
	font-size: 1.2em;
	text-align: left;
	letter-spacing: .5px
}

#login > form > div > input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 0 10px 2%;
	width: 70%;
	outline: none;
    border: 1px solid rgba(83,87,90,0.15);
    background: rgba(0,22,137,.05);
    transition: all 0.2s ease;
    font-size: 1.2em;
    text-align: left;
    color: #333;
    border-radius: 5px;
}

#login > form > div > input:focus{
	border: 1px solid #001689;
}

#login > form > input{
	appearance: none;
    -webkit-appearance: none;
    padding: 10px 15px;
    background: #106BA0;
    color: #fff;
    text-align: center;
    margin: 15px 0px;
    font-weight: normal;
    width: 50%;
    font-size: 1.5em;
    border-radius: 7px;
    border: 1px solid rgba(0,0,0,0);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#login > form > input:hover{
	background: #fff;
    color: #106BA0;
    border: 1px solid #106BA0;
}

/*contenedor de carga*/

#content-charge{
	width: 100%;
	height: 100vh;
	background: rgb(255,255,255);
	position: fixed;
	z-index: 100000;
	transition: all 0.1s ease;
	top: 0;
}

#charge{
	border: 3.5px solid #ccc;
	border-top-color: #001689;
	border-top-style: groove;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	animation: girar 1.5s linear infinite;
}

@keyframes girar{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}