form.Authenticator {
  margin: 0;
  min-height: 100vh;
  flex-direction: column;
}

form.Authenticator .status {
  text-align: center;
  margin: 0;
  font-size: small;
}

form.Authenticator .status--info {
  color: silver;
}

form.Authenticator .status--error {
  color: orange;
}

form.Authenticator [type="text"] {
  padding: 0.63rem 1.2rem 0.64rem;
  border: none;
  border: 1px solid silver;
  background: #fff;
  border-radius: 6px;
  width: 300px;
  max-width: 85vw;
  text-align: center;
  line-height: 1;
  margin: .5em 0;
  transition: all 200ms ease-in-out;
}

form.Authenticator [type="text"]:focus {
  border-color: black;
}

form.Authenticator ::placeholder {
  color: silver;
  opacity: 1;
}