.login-surface {
  position: fixed;
  inset: 0;
  background: var(--chrome);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.login-box {
  width: min(280px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.breathing-paw {
  font-size: 48px;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.65;
  animation: breathing-paw 2.6s ease-in-out infinite;
}
.login-wordmark {
  font-family: "Mrs Saint Delafield", "Snell Roundhand", cursive;
  font-style: normal;
  font-size: 62px;
  line-height: 1.2;
  color: var(--on-chrome);
  margin-bottom: 16px;
}
.login-box input {
  text-align: center;
  border: 0;
  background: var(--on-chrome);
  color: #5a3d42;
  border-radius: 14px;
}
.login-box button {
  width: 100%;
  border: 0;
  background: var(--on-chrome);
  color: #5a3d42;
  font-weight: 600;
  min-height: 48px;
}
.login-box .error {
  color: var(--on-chrome);
  font-size: 14px;
  min-height: 24px;
  text-align: center;
}
.login-box input::placeholder {
  color: #80666b;
}
.login-box :focus-visible {
  outline-color: var(--on-chrome);
}
@keyframes breathing-paw {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
}
