:root {
  --color-light: white;
  --color-dark: #001b5e;
  --color-signal: #00c3d8;
  --color-background: var(--color-light);
  --color-text: var(--color-dark);
  --color-accent: var(--color-signal);
  --size-bezel: .5rem;
  --size-radius: 5px;
}

.input {
  position: relative;
  display: block;
  font-weight: initial;
  height: 36px;
}

.input__label {
  font-weight: initial;
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(var(--size-bezel) * 0.75);
  margin: calc(var(--size-bezel) * 0.75 + 3px) calc(var(--size-bezel) * .5);
  white-space: nowrap;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  background: var(--color-background);
  -webkit-transition: -webkit-transform 120ms ease-in;
  transition: -webkit-transform 120ms ease-in;
  transition: transform 120ms ease-in;
  transition: transform 120ms ease-in, -webkit-transform 120ms ease-in;
  line-height: 1.2;
  z-index: 2;
}

.input__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  padding: calc(var(--size-bezel) * 1.5);
  color: currentColor;
  font-weight: normal;
  background: #fff;
  z-index: 1;
  height: 36px;
  position: relative;
  border-radius: var(--size-radius);
}

.input__field:focus + span.input__label, .input__field:focus + label + span.input__label, .input__field:not(:placeholder-shown) + span.input__label, .input__field:not(:placeholder-shown) + label + span.input__label {
  -webkit-transform: translate(0.25rem, -65%) scale(0.8);
          transform: translate(0.25rem, -65%) scale(0.8);
  color: var(--color-accent);
  font-weight: bold;
}
/*# sourceMappingURL=input.css.map */