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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gray {
  background-color: #e8e8e8;
}

.bg-white {
  background-color: #ffffff;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.p-4 {
  padding: 1rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.container {
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  width: 100%;
  max-width: 28rem;
  margin-top: -8rem;
}

.text-center {
  text-align: center;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.text-blue-600 {
  color: #2563eb;
}

.text-lg {
  font-size: 1.125rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-medium: 500;
}

.text-black {
  color: #000000;
}

.text-base {
  font-size: 1rem;
}

.border-b {
  border-bottom-width: 1px;
}

.recaptcha-box {
  border: 2px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #f9fafb;
  padding: 0.5rem 1rem;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #9ca3af;
  border-radius: 0.25rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.checkbox:hover {
  border-color: #6b7280;
}

.checkbox.disabled {
  cursor: not-allowed;
}

.checkbox.checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #2563eb;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.checkmark {
  width: 1rem;
  height: 1rem;
  color: white;
}

.text-sm {
  font-size: 0.875rem;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-900 {
  color: #111827;
}

.text-gray-800 {
  color: #1f2937;
}

.recaptcha-logo {
  text-align: right;
}

.recaptcha-logo img {
  width: 3.5rem;
  height: 3.5rem;
  margin-left: auto;
  margin-bottom: 0;
}

.recaptcha-text {
  font-size: 0.5rem;
  color: #6b7280;
  line-height: 1.2;
}

.btn-primary {
  width: 100%;
  background-color: #005a9c;
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  transition: background-color 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary:hover:not(:disabled) {
  background-color: #004d85;
}

.btn-primary:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.link-blue {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.link-blue:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #1d4ed8;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.list-disc {
  list-style-type: disc;
}

.pl-6 {
  padding-left: 1.5rem;
}

.border-t {
  border-top-width: 1px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.mt-8 {
  margin-top: 2rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
}
