body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #061122;
  color: #f8fafc;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card {
  width: min(760px, 100%);
  background: rgba(10, 25, 50, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  padding: 2rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
}

p {
  line-height: 1.75;
}

button, input[type='submit'] {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 600;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
}

button:hover, input[type='submit']:hover {
  background: #1d4ed8;
}

input, select, textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  padding: 0.9rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table th, .table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.table th {
  color: #94a3b8;
}

.notice {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}

.footer {
  max-width: 760px;
  margin-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
}
