html {
  font-family: 'system-ui', 'Helvetica', sans-serif;
}

body{
  width: fit-content;
  height: 100px;
  margin: 0 !important;
  display: flex;
  justify-content: center;
}

input[type="datetime-local"] {
  width: 200px;
  height: 50px;
  font-family: "Inter", sans-serif;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.3s ease;
  text-transform: uppercase;
}

input[type="datetime-local"]:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}