﻿*{
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing=border-box;
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-image:url(../90_imagen/imgalas.jpg);
	background-size: 85% 85%;
	background-position: center;
	background-repeat: no-repeat
}

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 99;
}

.logon{
	font-size: 2.3rem;
	color: #000;
	user-select: none;
	cursor: pointer;
}

.cabecera a{
	position: relative;
	font-size: 1.1 rem;	
	color: #000;
	text-decoration: none;
	font-weight: 500;
	margin-left: 40px;
}

.cabecera a::after{
	content: "";
	position: absolute;
	width: 100%;
	bottom: -6px;
	left: 0;
	height: 2px;
	background: #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s;
}

.cabecera a:hover::after{
	transform: scaleX(1);
	transform-origin: right;
}

.cabecera .btninicio{
	width: 150px;
	height: 50px;
	background: transparent;
	border: 2px solid #000;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1rem;
	color: #000;
	font-weight: 500;
	margin-left: 40px;
}

.cabecera .btninicio:hover{
	background: #000;
	color: #fff;
}	

.fondomodales{
	position: relative;
	width: 400px;
	height: 440px;
	background: rgba(0, 0, 0, 0);
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(100, 100, 100, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: transform .5s ease height .2s ease;
	transform: scale(0);
}

.fondomodales.active-btninicio{
	transform: scale(1);
}

.fondomodales.active{
	height: 455px;
}

.fondomodales .contenedor_general{
	width: 100%;
	padding: 40px;
}

.fondomodales .contenedor_general.loguin{
	transition: transform .17s ease;
	transform: translateX(0);
}

.fondomodales.active .contenedor_general.loguin{
	transition: none;
	transform: translateX(-400px);
}

.fondomodales .contenedor_general.registrar{
	position: absolute;
	transition: none;
	transform: translateX(400px);
}

.fondomodales.active .contenedor_general.registrar{
	transition:transform .17s ease;
	transform: translateX(0);
}

.fondomodales .cerrar{
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 1;
}

.contenedor_general h2{
	font-size: 2em;
	color: #000;	
	text-align: center;
}

.contenedor_ingreso{
	position: relative;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid #000;
	margin: 30px 0;
}

.contenedor_ingreso label{
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1em;
	font-weight: 600;
	pointer-events: none;
	transition: .4s;
	color: #000;
}

.contenedor_ingreso input:focus~label{
	top: -5px;
}

.contenedor_ingreso input{
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	color: #000;
	padding: 0 35px 0 5px;
}

.contenedor_ingreso .icono{
	position: absolute;
	right: 8px;
	background: #fff;
	border-radius: 5px;
	padding: 2px;
}

.recordar_contr{
	font-size: .9em;
	margin: -15px 0 15px;
	display: flex;
	color: #000;
	justify-content: space-between;
	font-weight: 600;
}

.recordar_contr label input{
	accent-color: #fff;
	margin-right: 3px;
}

.recordar_contr a{
	color: #000;
	text-decoration: none;
}

.recordar_contr a:hover{
	text-decoration: underline;
}

.boton{
	width: 100%;
	height: 45px;
	background-color: #000;
	border: none;
	outline: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	color: #fff;
	font-weight: bold;
}

.registrarse{
	font-size: .9em;
	color: #000;
	text-align: center;
	margin: 25px 0 10px;	
}

.registrarse p a{
	color: #000;
	text-decoration: none;
}

.registrarse a:hover{
	text-decoration: underline;
}

.modalContainer7 {
	display: none; 
	position: fixed;
	z-index: 120; 
	margin-top: 10px;
	padding-top: 250px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0.2);
	background-color: rgba(0,0,0,0.2);
}

.modalContainer7 .modal-content7 {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid lightgray;
	border-bottom: 20px solid #FF0000;
	width: 40%;
}
