/* ==============================
   LOGIN QuickCapture (limpio)
   ============================== */

   :root{
    --qc-blue: #0d6efd; /* bootstrap primary */
  }
  
  /* Base */
  body{
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
  
    /* si no carga work_sansregular, no caigas a serif */
    font-family: 'work_sansregular', 'Work Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Ancho moderado */
  .wrapper-page{
    width: 100%;
    max-width: 560px;
    margin: 48px auto;
    padding: 0 12px;
  }
  
  @media (max-width: 600px){
    .wrapper-page{ margin: 24px auto; }
  }
  
  /* Margen lateral */
  .margin{
    margin-left: 10px;
    margin-right: 10px;
  }
  
  /* Título */
  .wrapper-page h3{
    letter-spacing: 0.06em;
  }
  
  /* Evita el “10vh” viejo (tu <p> trae inline, pero esto ayuda al resto) */
  .wrapper-page p{
    margin-top: 0;
  }
  
  /* Links: sin subrayado por defecto */
  .wrapper-page a,
  .wrapper-page a:visited{
    text-decoration: none !important;
  }
  
  /* Subrayado solo en hover/focus */
  .wrapper-page a:hover,
  .wrapper-page a:focus{
    text-decoration: underline !important;
  }
  
  /* Mantén botones AIZU/Google */
  .btn-aizu{
    background-color: #484848;
    width: 100%;
    color: white;
    border: 2px solid #484848;
  }
  
  /* =======================================
     ICONO OJO (login/register) ✅
     REQUIERE: wrapper <div class="qc-pass-wrap">
     ======================================= */
  
  /* Normaliza label (opcional, pero ayuda) */
  .wrapper-page label{
    display: block;
    line-height: 1.2;
    margin-bottom: .5rem;
  }
  
  /* Wrapper SOLO del input+icon */
  .qc-pass-wrap{
    position: relative;
  }
  
  /* deja espacio para el ojo dentro del input */
  .qc-pass-wrap .form-control{
    padding-right: 44px;
  }
  
  /* ojo centrado en el input */
  .qc-pass-wrap #icon{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    line-height: 1;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
  }
  
  /* Facebook/Apple: mismo “cuerpo” que btn-aizu (ancho/alto/round) */
  .qc-btn-social{
    width: 100%;
    background-color: #484848;
    color: #fff;
    border: 2px solid #484848;
    border-radius: 999px;
  
    /* igual que tus otros botones: centrado con icono */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  
    /* Bootstrap btn-sm + padding cómodo */
    padding: .25rem .75rem;
    min-height: 38px; /* muy parecido al btn-sm */
  }
  
  /* icono */
  .qc-icon{
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
  }
  
  .qc-icon svg{
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* texto */
  .qc-text{
    font-size: 1rem;  /* igual a texto normal */
    font-weight: 400; /* como tus otros botones */
    line-height: 1;
  }
  
  /* restorePassword */
  .top-md{
    margin-top: 5vh;
  }
  
  .shadow-btn{
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.2);
    height: 10vh;
    margin-top: 7vh;
    width: 90%;
    margin-left: 5%;
  }
  
  @media (min-width: 800px) {
    .wrapper-page{
      margin: 5% auto;
      position: relative;
      width: 500px;
    }
    .margin-foot{
      margin-bottom: 30vh;
    }
  }
  
  @media (max-width: 800px) {
    label{
      font-size: 2.05vh;
    }
  
    .margin-foot{
      margin-bottom: 40vh;
    }
  }
  