:root {
  --tg-viewport-height: 100vh;
  --tg-safe-top: 0px;
  --tg-safe-right: 0px;
  --tg-safe-bottom: 0px;
  --tg-safe-left: 0px;
}

html,
body {
  width: 100%;
  height: var(--tg-viewport-height);
  overflow: hidden;
  overscroll-behavior: none;
}

#tg-auth-error {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  color: #fff;
  background: #071d1c;
  font-family: Arial, sans-serif;
  text-align: center;
}

.tg-auth-error__brand {
  color: #f6c75c;
  font-size: 28px;
  font-weight: 700;
}

.tg-auth-error__message {
  max-width: 320px;
  color: #dce8e7;
  font-size: 15px;
  line-height: 1.5;
}

#tg-auth-error button {
  min-width: 132px;
  min-height: 44px;
  border: 1px solid #f6c75c;
  border-radius: 6px;
  color: #071d1c;
  background: #f6c75c;
  font-size: 15px;
  font-weight: 700;
}
