
  /* el fondo, que lo cubra todo y tal*/
  .fondoFormLogin {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  /* la caja blanca que tienen los campos de logueo y tal */
  .contenidoFormLogin {
    position: absolute;
    background-color: #000000;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    top: 50%;
    left: 25%;
    transform: translateY(-50%);/*para centrarlo en y junto al top 50% y en la animacion tb pongo de 0 a -50%*/
  }
  
  /* Zoom Animation para que aparezca asi la caja*/
  .animateLogin {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0) translateY(0%);} 
    to {-webkit-transform: scale(1) translateY(-50%);}
  }
    
  @keyframes animatezoom {
    from {transform: scale(0) translateY(0%);} 
    to {transform: scale(1) translateY(-50%);}
  }

    /* zona superior de imagen y boton salir */
    .imgcontainer {
      text-align: center;
      margin: 24px 0 12px 0;
      position: relative;
    }
    
    /* particularidad de la imagen */
    #imgLogo {
      width: 15%;
      border-radius: 50%;
    }
    
    /* zona inferior de info de meter los datos*/
    .infocontainer {
      padding: 16px;
    }

    
  /* Full-width input fields */
  /*input[type=text], input[type=password] {*/
    #unameLogin, #pswLogin {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
  }

  #labelCheckShowPass {
    color: rgb(255, 255, 255);
  }

  #labelUNameLbl {
    color: rgb(255, 255, 255);
  }

  #labelUPassLbl {
    color: rgb(255, 255, 255);
  }
  
  /* Set a style for all buttons */
  #btnAceptarLogin {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    /*width: 100%;*/

    display: block;
    margin-left: auto;
    margin-right: auto;
  }

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

  #rememberDlg
  {
    position: absolute;
    right: 0%;
    padding-right: 17px;
  }
  #checkboxLoginRemember
  {
    margin-right: auto;
  }
  
  button:hover {
    opacity: 0.8;
  }
  

  /* The Close Button (x) */
  #closeLogin {
    position: absolute;
    right: 12px;
    top: -30px;
    color: rgb(255, 255, 255);
    font-size: 60px;
    font-weight: bold;
  }
  
  #closeLogin:hover,
  #closeLogin:focus {
    color: red;
    cursor: pointer;
  }
