/* Local Tailwind-style utilities used by the public auth pages. */
*, ::before, ::after { box-sizing: border-box; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.font-poppins { font-family: 'Poppins', 'Segoe UI', sans-serif; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white { background-color: #fff; }
.bg-green-100 { background-color: #dcfce7; }
.bg-red-100 { background-color: #fee2e2; }
.bg-cyan-600 { background-color: #0891b2; }
.bg-cyan-700 { background-color: #0e7490; }
.border { border-width: 1px; border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-5 { row-gap: 1.25rem; }
.border-gray-700 { border-color: #374151; }
.focus\:border-cyan-500:focus { border-color: #06b6d4; outline: none; }
.focus\:ring-cyan-500:focus { box-shadow: 0 0 0 3px rgba(6,182,212,.22); }
.focus\:ring-gray-600:focus { box-shadow: 0 0 0 3px rgba(75,85,99,.28); }
.hover\:bg-cyan-700:hover { background-color: #0e7490; }

.auth-create-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #67e8f9;
  border-radius: .5rem;
  background: #ecfeff;
  color: #0e7490;
  font-size: .875rem;
  font-weight: 700;
  padding: .75rem 1rem;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.auth-create-account:hover,
.auth-create-account:focus {
  background: #cffafe;
  border-color: #22d3ee;
  color: #155e75;
  box-shadow: 0 0 0 3px rgba(6,182,212,.18);
  outline: none;
}

.auth-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin-top: .75rem;
  border: 1px solid #bbf7d0;
  border-radius: .5rem;
  background: #f0fdf4;
  color: #15803d;
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem 1rem;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.auth-whatsapp-link:hover,
.auth-whatsapp-link:focus {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
  outline: none;
}

.auth-whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

.dark .dark\:bg-gray-800 { background-color: #1f2937; }
.dark .dark\:bg-gray-900 { background-color: #111827; }
.dark .dark\:bg-gray-900\/95 { background-color: rgba(17,24,39,.95); }
.dark .dark\:bg-green-800\/10 { background-color: rgba(22,101,52,.1); }
.dark .dark\:bg-red-800\/10 { background-color: rgba(153,27,27,.1); }
.dark .dark\:border-gray-700 { border-color: #374151; }
.dark .dark\:border-green-900 { border-color: #14532d; }
.dark .dark\:border-red-900 { border-color: #7f1d1d; }
.dark .dark\:text-white { color: #fff; }
.dark .dark\:text-gray-300 { color: #d1d5db; }
.dark .dark\:text-gray-500 { color: #6b7280; }
.dark .dark\:text-green-500 { color: #22c55e; }
.dark .dark\:text-red-500 { color: #ef4444; }

.dark .auth-create-account {
  background: rgba(8,145,178,.16);
  border-color: rgba(103,232,249,.5);
  color: #a5f3fc;
}

.dark .auth-create-account:hover,
.dark .auth-create-account:focus {
  background: rgba(8,145,178,.28);
  color: #ecfeff;
}

.dark .auth-whatsapp-link {
  background: rgba(22,101,52,.18);
  border-color: rgba(34,197,94,.45);
  color: #86efac;
}

.dark .auth-whatsapp-link:hover,
.dark .auth-whatsapp-link:focus {
  background: rgba(22,101,52,.32);
  color: #dcfce7;
}
