.dob-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
}

.dob-group label {
  display: block;
  margin-bottom: 6px;
  text-align: center;
  font-weight: 700;
}

.dob-wheels {
  display: flex;
  gap: 6px;
}

.dob-wheel {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.dob-wheel button,
.dob-wheel input {
  border: 2px solid #111;
  background: #1d242f;
  color: #fff;
  font: inherit;
}

.dob-wheel button {
  width: 34px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
}

.dob-wheel input {
  width: 34px;
  height: 40px;
  border-radius: 999px;
  text-align: center;
  font-size: 20px;
}

.dob-wheel--month input {
  width: 58px;
}

.dob-wheel--century input {
  width: 46px;
}

.dob-error {
  flex-basis: 100%;
  color: #ff8a8a;
  min-height: 1.2em;
}