body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #d4af37, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
}

.login-container h1.tagline {
  font-size: 20px;
  color: #8b6f1f;
  margin-bottom: 30px;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #d4af37;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

form button:hover {
  background-color: #c29c2e;
}

.forgot-password {
  margin-top: 20px;
}

#reset-section {
  margin-top: 15px;
}
