
    body {
      margin-top: 0 !important;
      /* padding: 0 !important; */
      background-color: #e0e0e0;
      display: flex;
      align-items: center;
      /* justify-content: center;  esto proboca espacios sobre el  navbar */
      height: 100vh;
      flex-direction: column;
      
    }
    .login-box {
     
      background: #0097a7;
      padding: 30px;
      border-radius: 20px;
      color: #fff;
      width: 350px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
      text-align: center;
    }
    .login-box h3 {
      margin-bottom: 20px;
      font-weight: bold;
    }
    .form-control {
      border-radius: 10px;
    }
    .btn-login {
      border-radius: 20px;
      background-color: #00c8e0;
      border: none;
      font-weight: bold;
    }
    .forgot-link {
      margin-top: 10px;
      display: block;
      color: #ccefff;
      font-size: 0.9rem;
      text-decoration: none;
    }
    .forgot-link:hover {
      text-decoration: underline;
    }
    .logo img {
      width: 270px;
      margin-bottom: -25px;
    }
 /* #logout:hover{
    background-color: #00c8e0;
    color: #fff;
 } */

 .no-top-space {
    margin-top: 0 !important;
    padding-top: 0 !important;
}