#resetForm {
  max-width: 400px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#resetForm label {
  font-weight: bold;
}

#resetForm input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#resetForm button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#resetForm button:hover {
  background-color: #0056b3;
}
