body {
    font-family:'Times New Roman', Times, serif;
    background: #97b9db;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .login-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 300px;
    text-align: center;
  }
  .login-box h2 {
    margin-bottom: 1.5rem;
    color: #333;
  }
  .login-box input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  .login-box button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
  .login-box button:hover {
    background: #0056b3;
  }
  .error {
    color: red;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }