.admin-login-view-store {
  font-size: .78rem;
}

.admin-login-demo-spacer {
  margin-top: auto;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.admin-login-demo-note {
  background: rgba(251,191,36,.15);
  border: 1px solid rgba(251,191,36,.3);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-login-demo-highlight {
  color: #fbbf24;
}

.admin-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.admin-demo-icon-muted {
  color: #9ca3af;
  flex-shrink: 0;
}

.rg-signin.admin-login-footer-demo {
  margin-top: 20px;
}

.demo-bar {
  background: rgba(251,191,36,.12);
  border: 1.5px solid rgba(251,191,36,.4);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}

.demo-bar-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #92400e;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media(max-width: 460px) {
  .demo-cards {
    grid-template-columns: 1fr;
  }
}

.demo-card {
  background: #fffbeb;
  border: 1.5px solid rgba(251,191,36,.5);
  border-radius: 12px;
  padding: 14px 16px;
}

.demo-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 8px;
}

.demo-cred {
  font-size: .8rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.demo-cred code {
  font-size: .78rem;
  background: rgba(0,0,0,.05);
  border-radius: 5px;
  padding: 2px 7px;
  color: #1e293b;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-cred .copy-btn {
  background: none;
  border: none;
  padding: 2px 4px;
  cursor: pointer;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color .15s;
}

.demo-cred .copy-btn:hover {
  color: #374151;
}

.demo-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  border: none;
  text-align: center;
  text-decoration: none;
}

.demo-btn-fill {
  background: linear-gradient(135deg,#fbbf24,#f59e0b);
  color: #fff;
  box-shadow: 0 3px 10px rgba(251,191,36,.35);
}

.demo-btn-fill:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.demo-btn-link {
  background: rgba(251,191,36,.15);
  color: #b45309;
  border: 1.5px solid rgba(251,191,36,.4) !important;
}

.demo-btn-link:hover {
  background: rgba(251,191,36,.25);
  color: #92400e;
}

.rg-btn-ready {
  background: linear-gradient(135deg,#00b894,#00cec9) !important;
  box-shadow: 0 4px 18px rgba(0,184,148,.45) !important;
  animation: btnPulse 1s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(0,184,148,.45), 0 0 0 0 rgba(0,184,148,.4);
  }

  50% {
    box-shadow: 0 4px 28px rgba(0,184,148,.6), 0 0 0 8px rgba(0,184,148,0);
  }
}
