.auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 32px;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  background: rgba(10, 12, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 22px 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.auth-text {
  font-size: 14px;
  color: #c6cbf5;
  line-height: 1.5;
}

.auth-steps {
  font-size: 14px;
  color: #e5e7f5;
  line-height: 1.5;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-command-wrapper {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-command-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3c4;
}

.auth-command-box {
  margin-top: 2px;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(77, 124, 255, 0.12), rgba(10, 12, 20, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.5);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.auth-command {
  font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 15px;
  font-weight: 500;
  color: #e5e7ff;
}

.auth-copy-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.auth-copy-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #e5e7ff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-copy-btn:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6);
  transform: translateY(-1px);
}

.auth-copy-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.auth-copy-btn--success {
  background: rgba(34, 197, 94, 0.28);
  border-color: rgba(34, 197, 94, 0.8);
}

.auth-copy-btn--success .auth-copy-icon {
  stroke: #bbf7d0;
}

.auth-hint {
  font-size: 12px;
  color: #9ca3c4;
}

.auth-footer-note {
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 600px) {
  .auth-card {
    padding: 20px 16px 18px;
  }

  .auth-title {
    font-size: 18px;
  }

  .auth-command {
    font-size: 14px;
  }

  .auth-command-box {
    padding: 9px 10px;
  }
}

body {
  background: #090b10;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}