/* login.html */


@keyframes fadeIn {
	from {
	opacity: 0;
	}
	to {
	opacity: 3;
	}
}

body {
	display: flex;
	height: 90vh;
	align-items: center;
	justify-content: center;
	font-family: 'Trebuchet MS', Helvetica;
	flex-direction: column;
	background-color: hsl(273, 11%, 60%);
}

.milogo {
	animation: fadeIn 3s ease-in-out;
	display: flex;
	margin-top: 5%;
}

.micajita {
	animation: fadeIn 3s ease-in-out;
	display: flex;
	width: 410px;
	height: 530px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 2%;
	padding: 28px;
	background-color: rgba(242, 242, 242, 0.5);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
	margin-bottom: 3%;
}

.correoemail label {
	display: inline-block;
	width: 150px;
	text-align: right;
	margin: 5px;
}

.correoemail input[type="submit"] {
	display: inline-block;
}

.iniciosesion input[type="submit"] {
	width: 100px;
	padding: 5px 10px;
	border-radius: 5px;
	border-width: 1px;
	cursor: pointer;
	color: #fff;
	background-color: rgb(96, 69, 109);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	margin-top: 15px
}

.iniciosesion:hover input[type="submit"] {
	width: 90px;
	border-radius: 10px;
	color: #fff;
	background-color: #9f89b1;
	cursor: pointer;
	transform: scale(1.1);
}

.btn {
	transition: all 0.3s ease-in-out;
	display: flex;
	width: 250px;
	align-items: center;
    padding: 5px 40px;
	border: outset;
    border-radius: 50px;
    cursor: pointer;
	color: white;
	background: linear-gradient(to right, rgb(96, 69, 109), #655383, #ac93c4);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	margin: auto;
	margin-bottom: 1.5%;
}	

.btn:hover {
	transform: translateX(5px);
	transform: scale(1.1);
	width: 250px;
	border-radius: 4px;
	background: #9f89b1;
	}

.btn-img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	border: 5px solid #fff;
	border-radius: 50%;
	background: #fff;
	margin-right: 5px;
	margin-left: 5px;
}

/* signup.html */
.fecha_nacimiento label {
	margin-left: 35px;
}

.fecha_nacimiento input[type="date"] {
	width: 140px;
	margin-right: 30px;
}

/* recuperarcontraseña.html */
.recuperar {
	animation: fadeIn 3s ease-in-out;
	display: flex;
	width: 400px;
	height: 300px;
	align-items: center;
	text-align: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 30px;
	background-color: rgba(242, 242, 242, 0.5);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
	margin-bottom: 5%;
}

.inputrecuperar {
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
}
