* {
  box-sizing: border-box;
}

.datetimepicker {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
}

.datetimepicker input {
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 1;
  border-color: black;
  background-color: transparent;
}

.datetimepicker input[type=date] {
  width: 7rem;
  padding: 0.25rem 0 0.25rem 0.5rem;
  border-right-width: 0;
}

.datetimepicker input[type=time] {
  width: 7rem;
  padding: 0.25rem 0.5rem 0.25rem 0;
  border-left-width: 0;
}

.datetimepicker span {
  height: 1rem;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.info {
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}