.auth-page {
    background: #0f0f0f;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  
  .form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  
  .form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
  }
  
  button {
    width: 100%;
    padding: 0.75rem;
    background: #34ffff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  button:hover {
    background: #2fd9d9;
  }
  
  a {
    color: #34ffff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  