body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f9;
  padding: 2rem;
  max-width: 500px;
  margin: auto;
  color: #333;
}

h1 {
  color: #2b63a2;
  font-size: 28px;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #444;
}

select,
input[type="text"] {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: 1px solid #cfd8e3;
  background-color: #f8fbff;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease;
}

select:focus,
input[type="text"]:focus {
  border-color: #2b63a2;
  outline: none;
}

button {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1.5rem;
  background-color: #2b63a2;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #234e84;
}
