html, body {
  font-family: Inter, sans-serif;
}

.wizard-screen {
  display: none;
}

.wizard-screen.is-active {
  display: block;
  animation: wizardFade .2s ease;
}

@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plate-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  border: 3px solid #1f2937;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.plate-shell__top {
  height: 34px;
  background: #2452d1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.plate-shell__body {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-shell__bottom {
  padding: 10px 14px 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.plate-shell__input {
  width: 100%;
  height: 112px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: clamp(40px, 7vw, 66px);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0f172a;
  padding: 0 14px;
  outline: none;
}

.plate-shell__input::placeholder {
  color: #94a3b8;
}

@media (max-width: 640px) {
  .plate-shell__body {
    min-height: 84px;
  }

  .plate-shell__input {
    height: 84px;
    font-size: 34px;
    letter-spacing: .12em;
  }
}