*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #e6edf3;
  background-color: #0d1117;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  width: 100%;
  max-width: 480px;
}

.card {
  width: 100%;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}

.shield-icon {
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
  background-color: #1f6feb22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon svg {
  color: #388bfd;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #e6edf3;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 14px;
  color: #8b949e;
  margin-bottom: 24px;
  line-height: 1.6;
}

.divider {
  height: 1px;
  background-color: #30363d;
  margin: 24px 0;
}

.turnstile-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


.status-message {
  font-size: 13px;
  color: #8b949e;
  margin-top: 16px;
  min-height: 20px;
}

.status-message.success {
  color: #3fb950;
}

.status-message.error {
  color: #f85149;
}

.info-box {
  margin-top: 20px;
  padding: 12px 16px;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  text-align: left;
}

.info-box p {
  font-size: 12px;
  color: #8b949e;
  line-height: 1.6;
}

.info-box a {
  color: #388bfd;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

