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

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  transition: transform 0.3s;
}

.container:hover {
  transform: translateY(-5px);
}

.heading {
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
  font-size: 1.5em;
  font-weight: bold;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  color: #555;
}

input[type="number"],
select,
input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="number"]:focus,
select:focus,
input[type="text"]:focus,
input[type="date"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s, transform 0.3s;
}

#btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

#btn:active {
  transform: translateY(0);
}