body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    float: left;
    display: -webkit-flex;
  }
  canvas {
    position: absolute;
    top:0;
    left:0;
    z-index:-99;
  }
  .login-div {
    text-align: center;
    max-width: 540px;
    padding: 35px;
    border-radius: 15px;
    color:white;
    background: rgba(8,8,8,0.7);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  }
  .logo {
    display: flex;
    background-image: url("olgo.png");
    width:100px;
    height:100px;
    border-radius: 50%;
    margin:0 auto;
  }
  .input100 {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.2;
    display: flex;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
  }
  .sdiv {
    display: flex;
    max-width: 540px;
    padding: 35px;
    border-radius: 15px;
    color:white;
    background: rgba(8,8,8,0.7);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  }
  /* Style the navbar */
  #navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  /* Navbar links */
  #navbar a {
    display: blok;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
  }
  
  /* Page content */
  .content {
    padding: 16px;
  }
  
  /* The sticky class is added to the navbar with JS when it reaches its scroll position */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }
  #tableSearch {
    margin: 8px;
    text-align: center;
    border-radius: 10px;
  }