body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	background: url(../img/fondo.jpg) center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	height: 100vh;
	overflow: hidden;

}

.formulario{
	background: rgba(0,0,0,.1);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0,0,0,0.568);
	color: white;
}

.form-control{
	background: rgba(0,0,0,.3);
	border-style: none;
	transition: 0.5s ease-in;
	outline: none;
	box-shadow: none;
}

.form-control:focus{
	box-shadow: none;
	outline: none;
}

.form-control::placeholder{
	color: white;
}

.ingresar{
	background: #222A3F;
	padding: 10px;
	font-size: 16px;
	font-weight: 700!important;
	color: white;
	box-shadow: 0 0 30px rgba(0,0,0,0.568);
	transition: 0.5s ease-in;
	width: 100%;
}
.ingresar:hover{
	color: white;
}

.olvide{
	color: white;
	text-decoration-style: none;
	text-decoration-line: none;
	text-align: right;
}
.olvide:hover{
	color: white;
	text-decoration-style: none;
	text-decoration-line: none;
	cursor: pointer;
}

