.auth-deck {
  width: 100%;
  max-width: 600px;
  border-top: 2px solid var(--neon-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 40px;
}

/* Visuals */
.auth-visual {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-pulse {
  color: var(--neon-teal);
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(29, 205, 159, 0.3));

  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.shield-pulse svg {
  width: 64px;
  height: 64px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.scan-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(29, 205, 159, 0.4);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Typography */
.auth-heading {
  font-size: 20px;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.auth-sub {
  color: var(--text-label);
  font-size: 13px;
  max-width: 80%;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto;
}

/* Terminal Log */
.terminal-window {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  margin: 10px 0;
}

.terminal-bar {
  background: #1e293b;
  color: #94a3b8;
  font-size: 10px;
  padding: 5px 10px;
  border-bottom: 1px solid #333;
  letter-spacing: 1px;
}

.terminal-log {
  padding: 15px;
  color: var(--neon-teal);
  font-size: 12px;
  min-height: 40px;
  line-height: 1.5;
}

.terminal-log.error {
  color: #ff4444;
}

.terminal-log.success {
  color: #00ffcc;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

@media (max-width: 768px) {
  .auth-body {
    padding: 25px;
  }

  .auth-visual {
    width: 80px;
    height: 80px;
  }

  .shield-pulse svg {
    width: 48px;
    height: 48px;
  }
}
