body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #fff;
  }

  .login-container {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.05); */
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    object-fit: contain;
  }

  h2 {
    margin-bottom: 1.5rem;
    color: #fff;
  }

  input[type="text"],
  input[type="password"] {
    width: 95%;
    padding: 0.75rem 0 0.75rem 1rem;
    margin: 0.5rem 0 1rem;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
  }

  input::placeholder {
    color: #aaa;
  }

  button {
    width: 100%;
    padding: 0.75rem;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: .5rem;
    transition: background 0.3s;
  }

  button:hover {
    background-color: #e0e0e0;
  }

  .message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }