/* CSS Document */
* {
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}
/*? INICIA SECCIÓN DE REGLAS PARA EL BLOQUE HERO*/
#div_hero{

    /* reglas relacionadas con la dimension del fondo*/
    width: 100vw;
    height: 100vh;

    /* Reglas relacionadas a la imagen de fondo */
    background-image: url('../archivos/logos_configuracion/imagen_login.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    /* Reglas con tecnología Flex */
    display: flex;
    justify-content: center;
    align-items: center;


    /* Reglas para la estilización de textos */
    text-align: center;
    color: #FFF5E9;

}
#div_hero #div_hero_interior img{
	width: 25vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
/* @keyframes flecha_abajo{
    from{
        transform: translateY(0px);
        opacity: 1;
    }
    to{
        transform: translateY(40px);
        opacity: 0;
    }
}
.flecha_abajo_moviendose{
    animation: flecha_abajo 1.5s infinite forwards ease-in-out;
} */
/** TERMINA SECCIÓN DE REGLAS PARA EL BLOQUE HERO*/
#contenedor_traslucido{
	width: 30vw;
	height: 90vh;
	margin: auto;
	border-radius: 4px;
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
	border: 1px solid #4b4b4b;
	padding: 30px;
}
.version_software{
	font-size: 0.8vw;
	margin-top: -20px;
	margin-bottom: 5px;
	text-align: right;
	left: 60%;
	color: white;
}
#formulario_acceso{
	background-color: whitesmoke;
	border-radius: 4px;
	padding: 20px;
}
#formulario_acceso input{
	display: block;
}
.contenedor_campos{
	display: flex;
	width: 100%;
	margin-bottom: 15px;
}
.icon {
	padding: 10px;
	background: rgb(73, 199, 94);
	color: white;
	min-width: 50px;
	text-align: center;
	border-style: solid ;
	border-width: 1px 0 1px 1px;
	border-color: rgb(30, 85, 39) transparent rgb(30, 85, 39) rgb(30, 85, 39);
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.icono_escudo{
	color: rgb(44, 44, 44);
	margin-left: -30px;
	margin-top: 7px;
	position: absolute;
	z-index: 2;
}
#usuario, #password{
    width: 100%;
    padding: 12px;
    border: 1px solid rgb(83, 83, 83);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	resize: none;
	outline: none;
	transition: border 0.6s ease-in-out;
	font-size: 1.2vw;
	color: rgb(73, 73, 73);
	letter-spacing: 1px;
}
#usuario:focus, #password:focus{
	outline: none;
	border: 1px solid rgb(73, 199, 94);
}
.icono-superpuesto {
	margin-left: 20%;
	margin-top: 15px;
	position: absolute;
	z-index: 2;
	color: darkslategray;
}
.icono-superpuesto:hover {
	cursor: pointer;
}  
.boton_formulario{
	width: 50%;
	position: relative;
	left: 50%;
    background-color:rgb(73, 199, 94);
    color: white;
    border: 1px solid rgb(83, 138, 99);
	padding: 5px;
	font-size: 1vw;
    text-decoration: none;
    border-radius: 4px;
    outline: none;
	transition: background-color 1s;	
}
.boton_formulario:hover{
    background-color: whitesmoke;
    border: 1px solid rgb(18, 121, 35);
    color: rgb(18, 121, 35);
    cursor: pointer;
}
.boton_formulario:active{
    background-color: rgb(39, 22, 13);
    border: 1px solid rgb(155, 121, 76) ;
    color: white;    
}
#fila_derechos_autor{
	width: 100%;
	position: relative;
	font-size: 0.9vw;
	margin-top: 15%;
}
#fila_derechos_autor a{
	color: whitesmoke;
}
.mensaje_generales{
	margin-top: 10px;
	font-size: 0.9vw;
	color: white;
	text-align: justify;
	padding: 15px;
	border-radius: 4px;
}
.mensaje_error{
	background-color: #f44336;
	border: 1px solid #551712;
}
.mensaje_exito{
	background-color: #4CAF50;
	border: 1px solid rgb(19, 41, 20);
}


/* 
    * El que tenga screen sólo lo hace más específico a que es ese tamaño de ventana y pantalla, sin el screen
    *   le estamos diciendo que sea un dispositivo con una ventana de ese tamaño.

    * Dispositivo = Mayoría de los dispositivos móviles en orientación vertical
    ? Ventana de 320px a 480px de ancho
*/
@media (min-width: 320px) and (max-width: 480px) {
	#contenedor_traslucido{
		width: 80vw;
		height: 90vh;
		padding: 20px;
	}
	#div_hero #div_hero_interior img{
		width: 50vw;
	}
	.version_software{
		font-size: 2.8vw;
	}
	#formulario_acceso{
		padding: 10px;
	}
	.icon {
		min-width: 30px;
	}
	#usuario, #password{
		width: 85%;
		font-size: 4vw;

	}	
	.icono-superpuesto {
		margin-left: 55%;
	}
	.boton_formulario{
		font-size: 4vw;
	}
	.clock {
		width: 68vw !important;
	}
	#Date { 
		font-size:4.2vw !important;
	}
	ul li { 
		font-size:5vw !important;
	}
	.mensaje_exito {
	   font-size: 3.2vw;
   }
   .mensaje_error {
	   font-size: 3.2vw;
   }
   #fila_derechos_autor{
		font-size: 2.7vw;
		margin-top: 8%;
	}   		
}


/* 
    * Dispositivo = Tablets de baja resolución, teléfonos móviles en formato horizontal
    ? Ventana de 481px a 767px de ancho
*/
@media (min-width: 481px) and (max-width: 767px) {
	#contenedor_traslucido{
		width: 80vw;
		height: 60vh;
		padding: 20px;
	}
	#div_hero #div_hero_interior img{
		width: 50vw;
	}
	.version_software{
		font-size: 2vw;
	}
	#formulario_acceso{
		padding: 10px;
	}
	.icon {
		min-width: 50px;
	}
	#usuario, #password{
		width: 100%;
		font-size: 3vw;

	}	
	.icono-superpuesto {
		margin-left: 65%;
	}
	.boton_formulario{
		font-size: 3vw;
	}
	.clock {
		width: 68vw !important;
	}
	#Date { 
		font-size:4.2vw !important;
	}
	ul li { 
		font-size:5vw !important;
	}
	.mensaje_exito {
	   font-size: 2.5vw;
   }
   .mensaje_error {
	   font-size: 2.5vw;
   }
   #fila_derechos_autor{
		font-size: 2vw;
		margin-top: 8%;
	}   		
}

/* 
    * Dispositivo = Tabletas, Ipads en formato vertical
    ? Ventana de 768px a 1024px de ancho
*/
@media (min-width: 768px) and (max-width: 1024px) {
	#contenedor_traslucido{
		width: 80vw;
		height: 50vh;
		padding: 20px;
		margin-top: -50px;
	}
	#div_hero #div_hero_interior img{
		width: 50vw;
	}
	.version_software{
		font-size: 2vw;
	}
	#formulario_acceso{
		padding: 25px;
	}
	.icon {
		min-width: 50px;
	}
	#usuario, #password{
		width: 100%;
		font-size: 2.8vw;
	}	
	.icono-superpuesto {
		margin-left: 65%;
	}
	.boton_formulario{
		font-size: 3vw;
	}
	.clock {
		width: 68vw !important;
	}
	#Date { 
		font-size:4.2vw !important;
	}
	ul li { 
		font-size:5vw !important;
	}
	.mensaje_exito {
	   font-size: 2vw;
   }
   .mensaje_error {
	   font-size: 2vw;
   }
   #fila_derechos_autor{
		font-size: 2vw;
		margin-top: 8%;
	}
}

/* 
    * Dispositivo = Tabletas, Ipads en formato horizontal
    ? Ventana de 768px a 1024px de ancho
*/  
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	#contenedor_traslucido{
		width: 60vw;
		height: 75vh;
		padding: 10px;
		margin-top: -100px;
	}
	#div_hero #div_hero_interior img{
		width: 20vw;
	}
	.version_software{
		font-size: 1vw;
	}
	#formulario_acceso{
		padding: 15px;
	}
	.icon {
		min-width: 50px;
	}
	#usuario, #password{
		width: 100%;
		font-size: 1.5vw;
	}	
	.icono-superpuesto {
		margin-left: 65%;
	}
	.boton_formulario{
		font-size: 1.5vw;
	}
	.clock {
		width: 48vw !important;
	}
	#Date { 
		font-size:2vw !important;
	}
	ul li { 
		font-size:3vw !important;
	}
	.mensaje_exito {
	   font-size: 1vw;
   }
   .mensaje_error {
	   font-size: 1vw;
   }
   #fila_derechos_autor{
		font-size: 0.8vw;
		margin-top: 2%;
	}
}

/* 
    * Dispositivo = Laptops y Computadoras de Escritorio
    ? Ventana de 1025px a 1281px de ancho
*/
@media (min-width: 1025px) and (max-width: 1281px) {
	#contenedor_traslucido{
		width: 60vw;
		height: 75vh;
		padding: 10px;
		margin-top: -100px;
	}
	#div_hero #div_hero_interior img{
		width: 30vw;
	}
	.version_software{
		font-size: 1vw;
	}
	#formulario_acceso{
		padding: 15px;
	}
	.icon {
		min-width: 50px;
	}
	#usuario, #password{
		width: 100%;
		font-size: 1.5vw;
	}	
	.icono-superpuesto {
		margin-left: 52%;
	}
	.boton_formulario{
		font-size: 1.5vw;
	}
	.clock {
		width: 48vw !important;
	}
	#Date { 
		font-size:2vw !important;
	}
	ul li { 
		font-size:3vw !important;
	}
	.mensaje_exito {
	   font-size: 1.3vw;
   }
   .mensaje_error {
	   font-size: 1.3vw;
   }
   #fila_derechos_autor{
		font-size: 1vw;
		margin-top: 12%;
	}
}

/* 
  * Dispositivo = Computadoras de Escritorio
  ? Ventana de 1281px en adelante
*/
@media (min-width: 1281px) {
  
    /*  AQUI PODEMOS DEJARLO VACIO Y LAS REGLAS ORIGINALES APLICARÁN, YA QUE EL SITIO SE DESARROLLÓ PENSANDO
        EN REGLAS PARA ESTAS RESOLUCIONES 
    */
}