/*----------------------------------------------------------------------------------------*/
/*                                          FONDO                                         */
/*----------------------------------------------------------------------------------------*/

body{
margin:0px;
font-family: "Alan Sans", sans-serif;
font-optical-sizing: auto;
font-style: normal;
background: radial-gradient(ellipse farthest-corner at 80% -10%, rgba(0,255,132,.12), transparent 60%),
            radial-gradient(ellipse farthest-corner at -10% 110%, rgba(0,230,118,.10), transparent 60%),
            linear-gradient(180deg, #0b0f12 0%, #0a0d10 100%);
overflow: hidden;
}



/*----------------------------------------------------------------------------------------*/
/*                                         SCROLL                                         */
/*----------------------------------------------------------------------------------------*/
body{
overflow-x: hidden;
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: #4b5563 #e5e7eb;	
}

::-webkit-scrollbar {
  width: 8px; 
  height: 8px; 
}

::-webkit-scrollbar-track {
  background: #000; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #2e7d32; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1b5e20; 
}


/*----------------------------------------------------------------------------------------*/
/*                                          BASE                                          */
/*----------------------------------------------------------------------------------------*/


.centrador {
    display: flex;
    flex-direction: column;
    align-items: center;
}



#actualizando {
display:none;
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 999;
background: url('../../b_img/cargando_04.gif') 50% 50% no-repeat rgb(249,249,249);
opacity:0.5;
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/



.login_logo {
    width: 70%;
	max-width: 420px;
    margin-bottom: 10px;
}

.demostra_titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.demostra_titulo h3 {
    font-size: 18px;
    color: #158737; 
    font-weight: 500;
    margin: 0 10px;
    text-transform: uppercase;
}

	.demostra_titulo h3 i{
		font-size: 18px;
		color: #158737; 
		font-weight: 500;
		margin: 0 10px;
		text-transform: uppercase;
	}

.linea{
    flex: 1;
    height: 1px;
    background-color: #158737; 
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/




.formulario {
    width: 85%;
    margin: 0 auto;
}

	.input-group {
		display: flex;
		align-items: center;
		background-color: #fff; 
		border: 1px solid #c5cbb0; 
		border-radius: 6px;
		margin-bottom: 15px;
		padding: 8px 12px;
		transition: all 0.3s ease;
	}


		.input-group:focus-within {
			border-color: #00F980;
			box-shadow: 0 0 8px rgba(26, 92, 61, 0.1);
		}

		.input-group .icon i{
			color: var(--color-icono);
			font-size: 16px;
			width: 30px;
			text-align: center;
		}

		.inpuf {
			border: none;
			outline: none;
			width: 100%;
			padding: 8px;
			font-size: 15px;
			color: #333;
			background: transparent;
		}


	.grupo_olvideclave{
		display: flex;
		align-items: left;	
	}

		.grupo_olvideclave a{
		color:#158737;
		text-decoration:none;
		padding:5px;
		transition: all 0.3s ease;
		}

		.grupo_olvideclave a:hover{
		color:#00F980;
		}

		.grupo_olvideclave a i{
		color:#158737;
		}

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/


/*----------------------------*/
/*       COLOR BOTON          */
/*----------------------------*/
.btn-login {
width:300px;
background:none;
border:solid 2px #158737;
color: #ffffff ;
font-size: 1.25rem;
line-height: 1.5;
font-weight: bold;
text-transform: uppercase;
height: 50px;
transition: background-color 0.3s ease, transform 0.2s ease;
border-radius: .3rem;
}


.btn-login:hover {
background-color: #158737;
border-color: #158737;
cursor: pointer;
}


.btn-login:active {
transform: scale(0.98);
}
/*----------------------------*/




/*----------------------------*/
/*       BOTÓN REGRESAR       */
/*----------------------------*/
.back-container {
    text-align: center;
    margin-top: 20px;
}

.enlace {
    display: inline-block;
    color: #9A9A9A;
    font-size: 14px; 
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 25px; 
    border-radius: 8px; 
    font-weight: 600;
    margin-top: 25px;
    background-color: rgba(0, 249, 128, 0.08); 
    border: 1px solid rgba(0, 249, 128, 0.15);
}

.enlace:hover {
    background-color: var(--color-primario); 
    color: #ffffff; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(46, 98, 148, 0.2); 
}

.enlace i {
    margin-right: 8px;
}
/*----------------------------*/


.visible { display: block; }
.novisible { display: none; }

