body {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}
.container {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 340px; /* Slightly wider than the form */
}
h2,
p {
  text-align: center;
  margin: 0 0 20px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
label {
  width: 100%;
  margin-bottom: 5px;
}
input {
  width: calc(100% - 20px);
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 5px;
  background-color: black;
  color: white;
}
button {
  width: calc(100% - 20px);
  padding: 10px;
  border: 2px solid white;
  border-radius: 5px;
  background-color: black;
  color: white;
  cursor: pointer;
  margin-bottom: 10px;
}
button:hover {
  background-color: white;
  color: black;
}
#responseMessage {
  text-align: center;
  margin-top: 10px;
}
#homeLink {
  text-align: center;
  margin-top: 20px;
}
#homeLink a {
  color: white;
  text-decoration: underline;
}
#homeLink a:hover {
  color: #ccc;
}
