.login-clean {
    background: #009bdd url("/img/tapiz12.svg");
    padding: 140px 0;
 }
  
  .login-clean form {
    max-width: 320px;
    width: 90%;
    margin: auto;
    background: #ffffff url("/img/tapiz12.svg");
    padding: 40px;
    border-radius: 4px;
    color: #505e6c;
    box-shadow: 0px 0px 8px 3px;
  }
  
  .login-clean .illustration {
    text-align: center;
    font-size: 50px;
    color: #009bdd;
  }
  
  .login-clean form .form-control {
    background: #f7f9fc;
    border: 1px solid #c5c4c4;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    color: #2b2c2c;
    text-indent: 8px;
    height: 42px;
    box-shadow: 0px 0px 3px 0px;
  }
  
  .login-clean form .btn-primary {
    background: #009bdd;
    border: none;
    border-radius: 4px;
    padding: 11px;
    color: white;
    margin-top: 20px;
    text-shadow: none;
    outline: none !important;
  }
  
  .login-clean form .btn-primary:hover, .login-clean form .btn-primary:active {
    background: #0180b6;
    /* box-shadow: 0px 0px 5px 2px; */
  }
  
  .login-clean form .btn-primary:active {
    transform: translateY(1px);
  }
  
  .login-clean form .forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #009bdd;
    opacity: 0.9;
    text-decoration: none;
  }
  
  .login-clean form .forgot:hover, .login-clean form .forgot:active {
    opacity: 1;
    text-decoration: none;
  }
  
  .botonShiny {
    position: relative;
    /* background-color: #1b1f20;
      color: white; */
    transition: 0.5s;
    overflow: hidden;
  }
  
  .botonShiny:hover {
    /* background-color: #161c1f; */
  }
  
  .botonShiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s;
  }
  
  .botonShiny:hover::before {
    left: 100%;
  }