/**
    * Modulo............: rld_adm.css
    * Descripcion.......: Inicio de sesion
    * Fecha Creacion....: 20/06/2023
    * Fecha Modificacion: 
    *
    * @copyright CopyRight(C)2021 Daniel Rosado
    * @author Daniel Rosado
*/

/* Se centra el contenedor donde se visualizarán los campos del login *********/
.contenedor-P{
    position: relative;
    width: 100%;
    height: 100%;
}
.contenedor-H {
  position: absolute;
  width: 450px;/*40%;*/
  height: min-content;
  /*background-color: #0056b3;*/
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
/******************************************************************************/
/***************** BARRAS DE DESPLAZAMIENTOS **********************************/
/* Works on Firefox */
* {
  scrollbar-width:  thin;
  scrollbar-color:  #0056b3 #f5f5f5; /*Deslizador Fondo*/
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;/*fondo*/
}

*::-webkit-scrollbar-thumb {
  background-color: #0056b3;
  border-radius: 20px;
  border: 3px solid #f5f5f5;
}
    
/*******************************************************************************/

.card {
/*
    float: left;*/
    width:100%;
    padding: 15px;
    box-shadow:
       inset 0 -1.5em 1.5em rgba(0,0,0,0.1),
             0 0  0 2px rgb(255,255,255),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.card2 {
    background-color: rgba(255,255,255,0.90);
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



@media all and (max-width: 640px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    .contenedor-H {
        position: absolute;
        width: 300px;
        height: min-content;
        /*background-color: #0056b3;*/
        box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
      }

}
