/* Reset some default styles */
body,
h1,
input,
form {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Style the form */
form {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Style the heading */
h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Style the input fields */
input[type="search"] {
  width: 80%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Style the submit button */
input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}
