body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #1b1f23; /* Dark background color */
  color: #e0e3e8; /* Light text color */
}
.container {
  text-align: center;
}
input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 300px;
  margin-right: 10px;
  border: 1px solid #1b1f23;
  border-radius: 4px;
  background-color: #1b1f23; /* Input background color */
  color: #e0e3e8; /* Input text color */
}
button {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #1b1f23;
  border-radius: 4px;
  background-color: #e0e3e8; /* Button background color */
  color: #1b1f23; /* Button text color */
  cursor: pointer;
}
button:hover {
  background-color: #e0e3e8; /* Button hover color */
}
