body {
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  
  .login-container {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ff00aa;
    text-align: center;
  }
  
  input[type="password"],
  input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    width: 200px;
    margin-right: 10px;
  }
  
  .password-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  @media (max-width: 600px) {
  .login-container {
    width: 90%;
    padding: 20px;
  }

  input[type="password"],
  input[type="text"] {
    font-size: 18px;
    width: 100%;
  }

  button {
    font-size: 18px;
    padding: 12px;
  }

  #viewBtn {
    font-size: 24px;
  }
}

  
  button:hover {
    background-color: #00cc00;
  }
  
  #message {
    margin-top: 10px;
    font-size: 14px;
  }
  
 /* Loading dots animation */
 .loading-dots::after {
    content: '';
    display: inline-block;
    width: 20px;
    text-align: left;
    animation: dots 1.5s steps(5, end) infinite;
    font-weight: bold;
    color: #ff0000;
    margin-left: 8px;
  }
  
  @keyframes dots {
    0%, 10% {
      content: '.';
    }
   20% {
        content:'..';
   }
    40% {
      content: '...';
    }
    60% {
      content: '....';
    }
    80%, 100% {
      content: '.....';
    }
  }
  
  