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

.auth-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  width: 300px;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #5a4f43;
}

.auth-container form {
  display: flex;
  flex-direction: column;
}

.auth-container input {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.auth-container button {
  background-color: #5a4f43;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.auth-container button:hover {
  background-color: #3a2f25;
}

.auth-container p {
  text-align: center;
  margin-top: 10px;
}
