body {
    font-family: Arial, sans-serif;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .login-container {
    background: black;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
  }
  
  .login-container h2 {
    color: azure;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .textInputWrapper {
    position: relative;
    width: 100%;
    margin: 12px 0px;
  }
  
  .textInputWrapper .textInput {
    width: 100%;
  }
  
  .eye-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
  }
  
  .eye-icon:hover {
    color: #1d503a; /* Change color on hover */
  }

  .login-container button {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    background-color: #171717;
    padding: 1em 2em;
    border: none;
    border-radius: .6rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    }
  
  .login-container button:hover {
    background: #1d503a; 
  }
  
  .login-container .message {
    text-align: left;
    margin-top: 1rem;
    font-weight: bold;
  }
  