@media (max-width: 760px) {
  .login-screen .login-button {
    position: relative !important;
    touch-action: manipulation;
    transition:
      transform 80ms ease,
      filter 80ms ease,
      box-shadow 80ms ease !important;
  }

  .login-screen .login-button:not(:disabled):active {
    transform: scale(0.985) !important;
    filter: brightness(0.96) !important;
    box-shadow: inset 0 2px 7px rgba(70, 46, 8, 0.22) !important;
  }

  .login-screen .login-button[aria-busy="true"] {
    cursor: wait;
    padding-right: 46px !important;
  }

  .login-screen .login-button[aria-busy="true"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    box-sizing: border-box;
    border: 2px solid rgba(14, 40, 81, 0.28);
    border-top-color: #0e2851;
    border-radius: 50%;
    animation: guest-login-tap-spin 700ms linear infinite;
  }
}

@keyframes guest-login-tap-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .login-screen .login-button,
  .login-screen .login-button[aria-busy="true"]::after {
    animation: none !important;
    transition: none !important;
  }
}
