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

/* Estilos Logo del modal content */

.container-modal{
	width: 100%;
	height: 90vh;
	background-color: #e3e3e3 ;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-modal {
	width: 20%; 
	height: 20%;
	transform: translate(0%, 50%);
}

/* Estilos modal */
.modal {
	display: block;
	position: fixed;
	height: 90vh;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
  }
  
/* Estilos para el contenido del modal */
.modal-content {
	position: absolute;
	font-size: 1.2rem;
	width: 80%;
	top: -100%; /* El modal estará fuera de la ventana inicialmente */
	left: 50%;
	transform: translateX(-50%);
	background-color: #e3e3e3;
	color: black;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	animation: slideIn 0.5s forwards; /* Animación de aparición */
  }

  .modal-content a {
	color: #833982;
}
  
/* Animación de aparición del modal */
@keyframes slideIn {
	from {
	  top: -100%;
	}
	to {
	  top: 40%;
	}
  }


/* Estilos para el login*/
.container-login {
	width: 100%;
	height: 90vh;
	background-color: white ;
	display: flex;
  }
  
.group-1 {
	flex: 1;
  }
  
.group-2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

.img-logo{
    width: 40%;
    height:22%;
	object-fit: contain;
	transform: translate(60%, 100%);
}

.container-form{
	width: 40% ;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #e3e3e3;
	border-radius: 10px;
	transform: translate(-20%, -60%);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
}
   
#form-pic{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	position: relative;
	top: -60px;
	left: 40%;
}

.login-head h1 {
	font-size: 2em;
	color: #000000;
	text-align: center;
	margin-bottom: 10px;
	margin-top: -40px;
}
    
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-size: 1.2em;
	display: block;
	margin-bottom: 5px;
	margin-left: 25px;
}

.form-group input {
	width: calc(100% - 40px);
	height: 40px;
	display: block;
	margin: auto;
	padding: 0 10px;
	box-sizing: border-box;
    border-radius: 5px;
	background-color: white;
	border: none;

}

.form-group button[type="submit"] {
	width: calc(100% - 40px);
	margin-left: 20px;
	background-color: #000000;
	color: white;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	padding: 10px;
	transition: background-color 0.2s ease-in-out;
}

.form-group button[type="submit"]:hover {
	background-color: #833982;
}

.form-group a {
	color: #833982;
	text-decoration: none;
	margin-left: 25px;
}

.form-footer {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.form-footer p {
	font-size: 1.2em;
	color: black;
}

.form-footer a {
	color: #833982;
} 

::placeholder{
	letter-spacing: 2px;
	color: rgb(148, 146, 146);
}


 /* Estilos para el pie de pagina*/  
footer {
	background-color: #000000;
	height: 10vh;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
.social a {
	margin: 0 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
  
.social img {
	height: 5vh;
}
  
.social small {
	color: white;
}

/* =============RESPONSIVE============= */

/*  Extra large devices (large desktops, 1020px and up / Desktop */
/* add all content */
@media only screen and (min-width: 1024px) {
	/* Estilos Logo del modal content */

	.container-modal{
		width: 100%;
		height: 90vh;
		background-color: #e3e3e3;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 20%; 
		height: 20%;
		transform: translate(0%, 50%);
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		font-size: 1.2rem;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}

	.modal-content a {
		color: #833982;
	}
	
	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 90vh;
		background-color: white ;
		display: flex;
	}
	
	.group-1 {
		flex: 1;
	}
	
	.group-2 {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		
	}

	.img-logo{
		width: 40%;
		height:22%;
		object-fit: contain;
		transform: translate(60%, 100%);
	}

	.container-form{
		width: 40% ;
		position: absolute;
		top: 50%;
		left: 50%;
		background-color: #e3e3e3;
		border-radius: 10px;
		transform: translate(-20%, -60%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 120px;
		height: 120px;
		border-radius: 50%;
		position: relative;
		top: -60px;
		left: 40%;
	}

	.login-head h1 {
		font-size: 2em;
		color: #000000;
		text-align: center;
		margin-bottom: 10px;
		margin-top: -40px;
	}
		
	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		font-size: 1.2em;
		display: block;
		margin-bottom: 5px;
		margin-left: 25px;
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 40px;
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;

	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		font-size: 1.2em;
		padding: 10px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982;
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
	}

	.form-footer {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}

	.form-footer p {
		font-size: 1.2em;
		color: black;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 10vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 5vh;
	}
	
	.social small {
		color: white;
	}
}

/* Small devices (landscape phones, 1024px and down ) */
@media not screen, (orientation: landscape) and (max-width: 1024px) {
	/* Estilos Logo del modal content */
	.container-modal{
		width: 100%;
		height: 85vh;
		background-color: #e3e3e3 ;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 20%; 
		height: 20%;
		transform: translate(0%, 50%);
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		font-size: 18px;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}
	
	.modal-content a {
		color: #833982;
	}


	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 85vh;
		background-color: white ;
		display: flex;
		flex-direction: row;
	}
	
	.group-1 {
		display: flex;
		justify-content: center;
		align-items: center;
  		flex: 1;
	}
	
	.group-2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1;
	}

	.img-logo{
		width: 40%;
		height: 40%;
		object-fit: contain;
		transform: translate(20%, -0%);
		/*transform: translate(60%, 100%);*/
	}

	.container-form{
		width: 75%;
		display: block;
		position: static;
		/*top: 60%;
		left: 50%; */
		background-color: #e3e3e3;
		border-radius: 10px;
		/*transform: none;*/
		transform: translate(-25%, 2%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 30px;
		height: 30px;
		border-radius: 50%;
		position: relative;
		object-fit: contain; /* Imagen fija */
		top: -15px;
		left: 45%;
	}

	.login-head h1 {
		/*font-size: 1.3em;*/
		font-size: 24px;
		color: #000000;
		text-align: center;
		margin-bottom: 1px;
		margin-top: -22px;
	}
		
	.form-group {
		margin-bottom: 6px; /* Espacio entre placeholder */
	}

	.form-group label {
		/*font-size: 1em;*/
		font-size: 12px;
		display: block;
		margin-bottom: 4px; /* Espacio entre label y placeholder */
		margin-left: 25px; /* Estatico */
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 22px; /* altura input */
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;

	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		/*font-size: 1.1em;*/
		font-size: 14px;
		font-weight: 500;
		padding: 6px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982;
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
		/*font-size: 1em;*/
		font-size: 12px;
	}

	.form-footer {
		margin-top: 2px;
		margin-bottom: 10px;
		text-align: center;
	}

	.form-footer p {
		/*font-size: 1em;*/
		font-size: 12px;
		color: black;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
		font-size: 12px; /* Placeholder */
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 15vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 8vh;
	}
	
	.social small {
		color: white;
		font-size: 10px; /* Reduciendo espacio entre elementos sociales */
	}

}

/* Pantallas de escritorio menores a 1024px  hasta 992px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	
	/* Estilos Logo del modal content */

	.container-modal{
		width: 100%;
		height: 90vh;
		background-color: #e3e3e3 ;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 20%;
		height: 20%;
		transform: translate(0%, 70%);
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		font-size: 1.2rem;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}

	.modal-content a {
		color: #833982;
	}
	
	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 90vh;
		background-color: white ;
		display: flex;
	}
	
	.group-1 {
		flex: 1;
	}
	
	.group-2 {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		
	}

	.img-logo{
		width: 40%;
		height: 22%;
		object-fit: contain;
		/*transform: translate(-10%, 0%);*/
		transform: translate(-10%, -80%);
	}

	.container-form{
		width: 40% ;
		position: absolute;
		top: 50%;
		left: 50%;
		background-color: #e3e3e3;
		border-radius: 10px;
		transform: translate(-5%, -60%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 80px;
		height: 80px;
		border-radius: 50%;
		position: relative;
		top: -40px;
		left: 40%;
	}

	.login-head h1 {
		/*font-size: 2em;*/
		font-size: 30px;
		color: #000000;
		text-align: center;
		margin-bottom: 10px;
		margin-top: -40px;
	}
		
	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		/*font-size: 1.2em;*/
		font-size: 17.2px;
		display: block;
		margin-bottom: 5px;
		margin-left: 25px;
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 40px;
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;

	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		/*font-size: 1.2em;*/
		font-size: 17.2px;
		padding: 10px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982;
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
		font-size: 15px;
	}

	.form-footer {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}

	.form-footer p {
		/*font-size: 1.2em;*/
		color: black;
		font-size: 17.2px;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
		font-size: 12px;
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 10vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 5vh;
	}
	
	.social small {
		color: white;
	}
}

/* Medium devices (tablets, 768px and up)  */
@media not screen, (orientation: portrait) and (min-width: 768px) and (max-width: 991px) {
	
	/* Estilos Logo del modal content */
	.container-modal{
		width: 100%;
		height: 90vh;
		background-color: #e3e3e3; /* Preguntar fondo otro color */
		display: flex;
		justify-content: column;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 40%; 
		height: 40%;
		transform: translate(0%, 40%); /* En la misma posición de la img del login */
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		/*font-size: 1.2rem;*/
		font-size: 24px;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}

	.modal-content a {
		color: #833982;
	}
	
	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 90vh;
		background-color: white ;
		display: flex;
		flex-direction: column;
	}
	
	.group-1 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 10%;
	}
	
	.group-2 {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.img-logo{
		width: 40%;
		height: 40%;
		object-fit: contain;
		transform: translate(0%, -60%);
		/*transform: translate(60%, 100%);*/
	}

	.container-form{
		width: 80%;
		display: block;
		position: static;
		/*top: 60%;
		left: 50%; */
		background-color: #e3e3e3;
		border-radius: 10px;
		/*transform: none;*/
		transform: translate(0%, -50%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 70px;
		height: 70px;
		border-radius: 50%;
		position: relative;
		object-fit: contain; /* Imagen fija */
		top: -40px;
		left: 45%;
	}

	.login-head h1 {
		/*font-size: 1.3em;*/
		font-size: 30px;
		color: #000000;
		text-align: center;
		margin-bottom: 10px;
		margin-top: -20px;
	}
		
	.form-group {
		margin-bottom: 15px; /* Espacio entre placeholder */
	}

	.form-group label {
		/*font-size: 1em;*/
		font-size: 18px;
		display: block;
		margin-bottom: 6px; /* Espacio entre label y placeholder */
		margin-left: 25px; /* Estatico */
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 30px; /* altura input */
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;
		border-color: #833982;
	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		/*font-size: 1.1em;*/
		font-size: 20px;
		font-weight: 500;
		padding: 8px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982;
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
		/*font-size: 1em;*/
		font-size: 18px;
	}

	.form-footer {
		margin-top: 10px;
		margin-bottom: 10px;
		text-align: center;
	}

	.form-footer p {
		/*font-size: 1em;*/
		font-size: 20px;
		color: black;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
		font-size: 16px; /* Placeholder */
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 10vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 6vh;
	}
	
	.social small {
		color: white;
		font-size: 16px; /* Reduciendo espacio entre elementos sociales */
	}
}

/* Medium devices (tablets, 768px and up)  */
@media not screen, (orientation: portrait) and (min-width: 577px) and (max-width: 767px) {
	/* Estilos Logo del modal content */
	.container-modal{
		width: 100%;
		height: 90vh;
		background-color: #e3e3e3; /* Preguntar fondo otro color */
		display: flex;
		justify-content: column;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 40%; 
		height: 40%;
		transform: translate(0%, 40%); /* En la misma posición de la img del login */
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		/*font-size: 1.2rem;*/
		font-size: 22px;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}

	.modal-content a {
		color: #833982;
	}
	
	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 90vh;
		background-color: white ;
		display: flex;
		flex-direction: column;
	}
	
	.group-1 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 10%;
	}
	
	.group-2 {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.img-logo{
		width: 40%;
		height: 40%;
		object-fit: contain;
		transform: translate(0%, -60%);
		/*transform: translate(60%, 100%);*/
	}

	.container-form{
		width: 80%;
		display: block;
		position: static;
		/*top: 60%;
		left: 50%; */
		background-color: #e3e3e3;
		border-radius: 10px;
		/*transform: none;*/
		transform: translate(0%, -50%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 70px;
		height: 70px;
		border-radius: 50%;
		position: relative;
		object-fit: contain; /* Imagen fija */
		top: -40px;
		left: 45%;
	}

	.login-head h1 {
		/*font-size: 1.3em;*/
		font-size: 30px;
		color: #000000;
		text-align: center;
		margin-bottom: 10px;
		margin-top: -20px;
	}
		
	.form-group {
		margin-bottom: 15px; /* Espacio entre placeholder */
	}

	.form-group label {
		/*font-size: 1em;*/
		font-size: 17px;
		display: block;
		margin-bottom: 6px; /* Espacio entre label y placeholder */
		margin-left: 25px; /* Estatico */
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 30px; /* altura input */
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;
		border-color: #833982;
	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		/*font-size: 1.1em;*/
		font-size: 18px;
		font-weight: 500;
		padding: 8px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
		/*font-size: 1em;*/
		font-size: 16px;
	}

	.form-footer {
		margin-top: 10px;
		margin-bottom: 10px;
		text-align: center;
	}

	.form-footer p {
		/*font-size: 1em;*/
		font-size: 18px;
		color: black;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
		font-size: 15px; /* Placeholder */
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 10vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 6vh;
	}
	
	.social small {
		color: white;
		font-size: 16px; /* Reduciendo espacio entre elementos sociales */
	}
}

/* Small devices (phones, 576px and up ) */
@media not screen and (min-width: 576px) {
	/* Estilos Logo del modal content */
	.container-modal{
		width: 100%;
		height: 90vh;
		background-color: #e3e3e3; /* Preguntar fondo otro color */
		display: flex;
		justify-content: column;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-modal {
		width: 50%; 
		height: 50%;
		transform: translate(0%, 50%); /* En la misma posición de la img del login */
	}

	/* Estilos modal */
	.modal {
		display: block;
		position: fixed;
		height: 90vh;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999; /* Asegura que el modal esté por encima de todo el contenido */
	}
	
	/* Estilos para el contenido del modal */
	.modal-content {
		position: absolute;
		/*font-size: 1.2rem;*/
		font-size: 20px;
		width: 80%;
		top: -100%; /* El modal estará fuera de la ventana inicialmente */
		left: 50%;
		transform: translateX(-50%);
		background-color: #e3e3e3;
		color: black;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		animation: slideIn 0.5s forwards; /* Animación de aparición */
	}

	.modal-content a {
		color: #833982;
	}
	
	/* Animación de aparición del modal */
	@keyframes slideIn {
		from {
		top: -100%;
		}
		to {
		top: 40%;
		}
	}


	/* Estilos para el login*/
	.container-login {
		width: 100%;
		height: 90vh;
		background-color: white ;
		display: flex;
		flex-direction: column;
	}
	
	.group-1 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 10%;
	}
	
	.group-2 {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.img-logo{
		width: 40%;
		height: 40%;
		object-fit: contain;
		transform: translate(0%, -60%);
		/*transform: translate(60%, 100%);*/
	}

	.container-form{
		width: 80%;
		display: block;
		position: static;
		/*top: 60%;
		left: 50%; */
		background-color: #e3e3e3;
		border-radius: 10px;
		/*transform: none;*/
		transform: translate(0%, -50%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
	
	#form-pic{
		width: 60px;
		height: 60px;
		border-radius: 50%;
		position: relative;
		object-fit: contain; /* Imagen fija */
		top: -30px;
		left: 40%;
	}

	.login-head h1 {
		/*font-size: 1.3em;*/
		font-size: 24px;
		color: #000000;
		text-align: center;
		margin-bottom: 10px;
		margin-top: -20px;
	}
		
	.form-group {
		margin-bottom: 15px; /* Espacio entre placeholder */
	}

	.form-group label {
		/*font-size: 1em;*/
		font-size: 12px;
		display: block;
		margin-bottom: 6px; /* Espacio entre label y placeholder */
		margin-left: 25px; /* Estatico */
	}

	.form-group input {
		width: calc(100% - 40px);
		height: 30px; /* altura input */
		display: block;
		margin: auto;
		padding: 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		background-color: white;
		border: none;
		border-color: #833982;
	}

	.form-group button[type="submit"] {
		width: calc(100% - 40px);
		margin-left: 20px;
		background-color: #000000;
		color: white;
		border-radius: 5px;
		border: none;
		cursor: pointer;
		/*font-size: 1.1em;*/
		font-size: 16px;
		font-weight: 500;
		padding: 6px;
		transition: background-color 0.2s ease-in-out;
	}

	.form-group button[type="submit"]:hover {
		background-color: #833982;
	}

	.form-group a {
		color: #833982;
		text-decoration: none;
		margin-left: 25px;
		/*font-size: 1em;*/
		font-size: 14px;
	}

	.form-footer {
		margin-top: 10px;
		margin-bottom: 10px;
		text-align: center;
	}

	.form-footer p {
		/*font-size: 1em;*/
		font-size: 12px;
		color: black;
	}

	.form-footer a {
		color: #833982;
	} 

	::placeholder{
		letter-spacing: 2px;
		color: rgb(148, 146, 146);
		font-size: 12px; /* Placeholder */
	}


	/* Estilos para el pie de pagina*/  
	footer {
		background-color: #000000;
		height: 10vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.social a {
		margin: 0 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social img {
		height: 4vh;
	}
	
	.social small {
		color: white;
		font-size: 10px; /* Reduciendo espacio entre elementos sociales */
	}
}


 /* Dispositivos con pantalla muy pequeña */
@media not screen and (min-width: 376px){

	.img-logo{
		width: 50%;
		height: 50%;
		object-fit: contain;
		transform: translate(0%, -30%);
		/*transform: translate(60%, 100%);*/
	}

	.container-form{
		width: 80%;
		display: block;
		position: static;
		/*top: 60%;
		left: 50%; */
		background-color: #e3e3e3;
		border-radius: 10px;
		/*transform: none;*/
		transform: translate(0%, -20%);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
	}
}

  /*

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

.container-modal{
	width: 100%;
	height: 90vh;
	background-color: #e3e3e3 ;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-modal {
	width: 20%; 
	height: 20%; 
}

.modal {
	display: block;
	position: fixed;
	height: 90vh;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999; 
  }
  

.modal-content {
	position: absolute;
	font-size: 1.2rem;
	width: 80%;
	top: -100%; 
	left: 50%;
	transform: translateX(-50%);
	background-color: #e3e3e3;
	color: black;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	animation: slideIn 0.5s forwards; 
  }
  
@keyframes slideIn {
	from {
	  top: -100%;
	}
	to {
	  top: 40%;
	}
  }


.container-login {
	width: 100%;
	height: 90vh;
	background-color: white ;
	display: flex;
  }
  
.group-1 {
	flex: 1;
  }
  
.group-2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

.img-logo{
    width: 40%;
    height:22%;
	transform: translate(60%, 100%);
}

.container-form{
	width: 40% ;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #e3e3e3;
	border-radius: 10px;
	transform: translate(-20%, -60%);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
}
   
#form-pic{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	position: relative;
	top: -60px;
	left: 40%;
}

.login-head h1 {
	font-size: 2em;
	color: #000000;
	text-align: center;
	margin-bottom: 10px;
	margin-top: -40px;
}
    
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-size: 1.2em;
	display: block;
	margin-bottom: 5px;
	margin-left: 25px;
}

.form-group input {
	width: calc(100% - 40px);
	height: 40px;
	display: block;
	margin: auto;
	padding: 0 10px;
	box-sizing: border-box;
    border-radius: 5px;
	background-color: white;
	border: none;

}

.form-group button[type="submit"] {
	width: calc(100% - 40px);
	margin-left: 20px;
	background-color: #000000;
	color: white;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	padding: 10px;
	transition: background-color 0.2s ease-in-out;
}

.form-group button[type="submit"]:hover {
	background-color: #833982
}

.form-group a {
	color: #0071c5;
	text-decoration: none;
	margin-left: 25px;
}

.form-footer {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.form-footer p {
	font-size: 1.2em;
	color: black;
}

.form-footer a {
	color: #0071c5
} 

::placeholder{
	letter-spacing: 2px;
	color: rgb(148, 146, 146);
}



footer {
	background-color: #000000;
	height: 10vh;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
.social a {
	margin: 0 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
  
.social img {
	height: 5vh;
}
  
.social small {
	color: white;
}
*/