  /* el fondo, que lo cubra todo y tal*/
  .fondoFormVisorImagen {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(66, 68, 41, 0.8); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  .input-sin-zoom {
  font-size: 70px;              /* Engaña al navegador: Al ver 16px NUNCA hará zoom */
  transform: scale(0.75);       /* Reduce el tamaño visual al 75% (16px * 0.75 = 12px) */
  transform-origin: left center; /* Mantiene el alineado a la izquierda */
  
  /* 2. Corrige el espacio físico que ocupa el elemento en el diseño */
  width: 133.33%;               /* Compensa el ancho que se pierde al encogerlo (100 / 0.75) */
  margin-right: -33.33%;        /* Elimina el espacio vacío sobrante a la derecha */

  position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}



  #imgnoMovil {
    /*background-image: url('tick8.png'); background-repeat: no-repeat; background-position: center; background-size: cover;*/
    width: 50%;
    position: relative;
    top: 25%;
    left: 25%;
  }

    #imgRotarMovil {
    /*background-image: url('tick8.png'); background-repeat: no-repeat; background-position: center; background-size: cover;*/
    width: 50%;
    position: relative;
    top: 25%;
    left: 25%;
  }

  /* la caja blanca que tienen los campos de logueo y tal */
  #buttonInputMail {
    /*background-image: url('tick8.png'); background-repeat: no-repeat; background-position: center; background-size: cover;*/
    font-size: 70px;
    width:20%;
    position: relative;
    top: 30px;
  }
  
  /* Zoom Animation para que aparezca asi la caja*/
  .animateVisorImagen{
    -webkit-animation: animatezoomVisorImgs 0.6s;
    animation: animatezoomVisorImgs 0.6s
  }
  
  @-webkit-keyframes animatezoomVisorImgs {
    from {-webkit-transform: scale(0) translate(0%,0%);} 
    to {-webkit-transform: scale(1) translate(-50%,-50%);}
  }
    
  @keyframes animatezoomVisorImgs {
    from {transform: scale(0) translate(0%,0%);} 
    to {transform: scale(1) translate(-50%,-50%);}
  }

  #showVideoIframe{
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    /*margin: 8px 0;*/
    border: none;
    cursor: pointer;
    width: auto;
  }