/* Basic styling for Genysis verification flow */

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #111827;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  background: #1e40af;
  color: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
}

.nav-links a {
  color: #ffffff;
  margin-left: 1rem;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

.main-content {
  margin-top: 2rem;
}

.site-footer {
  background: #f3f4f6;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

form {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  margin-top: 0.25rem;
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

.error-message {
  color: #b91c1c;
  margin-top: 1rem;
}

.success-message {
  color: #047857;
  margin-top: 1rem;
}