#authScreen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}

.auth-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--fern);
  background: var(--pine);
  object-fit: cover;
}

.auth-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: 1px;
  line-height: 1;
}

.auth-sub {
  font-size: 13px;
  color: var(--ghost);
  margin-top: -8px;
}

.auth-divider {
  width: 100%;
  height: 1px;
  background: var(--line-dk);
  margin: 8px 0;
}

#g_id_signin {
  display: flex;
  justify-content: center;
  width: 100%;
}

.auth-error {
  display: none;
  color: var(--flame);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--r);
  padding: 10px 16px;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

#btnLogout {
  display: none;
}
