  /***********************/ 
  /*    CSS DEL LOGIN    */
  /***********************/

  /* ESTILO LOGIN */
  /* #cuadroLogin {
    background-color: #fff;
    padding-top: 4em;
    box-shadow: 11px 10px 15px -1px rgba(0, 0, 0, 0.67);
    border-radius: 3%;
  } */

  #cuadroLoginHome {
    background: #fff;
    box-shadow: 9px 8px 20px -1px rgb(75, 105, 73, 0.67);
    border: 1px solid rgba(233, 236, 242, 0.981);
  }

  /* USUARIO Y CONTRASEÑA LOGIN */
  input#pass {
    width: 100%;
    margin-bottom: 10px;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.219);
    border-radius: 2px; 
  }

  input:focus {
    border-color: #4b6949;
    box-shadow: 0px 1px 0px 0px #5b7a59;
  }

  .botonLogin {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 2px;
    border: none;
    background-color: #4b6949;
  }

  #recuerdame{
    font-size: 14px;
    color:grey;
  }

  .botonLogin:hover {
    border-radius: 2px;
    padding-right: 24px;
    padding-left: 8px;
    background-color:  #82ae7e;
  }

  .botonLogin:hover:after {
    opacity: 0.8;
    right: 10px;
  }

  .botonLogin:after {
    content: "\00BB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    line-height: 40px;
    top: 0;
    right: -20px;
    transition: 0.4s;
  }
