/**
 * Login / Registro — respaldo cuando tailwind.css compilado no incluye todas
 * las utilidades usadas en login.php y register.php (p. ej. w-1/6, space-y-3.5).
 * Las reglas van bajo .auth-page para no pisar el resto del sitio.
 */
.auth-page {
  box-sizing: border-box;
  --auth-indigo: #4f46e5;
  --auth-purple: #9333ea;
}

.auth-page .h-screen {
  min-height: 100vh;
  height: 100vh;
}
.auth-page .min-h-0 {
  min-height: 0;
}
.auth-page .min-h-\[200px\] {
  min-height: 200px;
}
.auth-page .overflow-hidden {
  overflow: hidden;
}
.auth-page .overflow-y-auto {
  overflow-y: auto;
}
.auth-page .relative {
  position: relative;
}
.auth-page .absolute {
  position: absolute;
}
.auth-page .inset-0 {
  inset: 0;
}
.auth-page .z-10 {
  z-index: 10;
}
.auth-page .hidden {
  display: none !important;
}
.auth-page .flex {
  display: flex;
}
.auth-page .inline-flex {
  display: inline-flex;
}
.auth-page .block {
  display: block;
}
.auth-page .grid {
  display: grid;
}
.auth-page .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.auth-page .flex-1 {
  flex: 1 1 0%;
}
.auth-page .flex-shrink-0,
.auth-page .shrink-0 {
  flex-shrink: 0;
}
.auth-page .flex-col {
  flex-direction: column;
}
.auth-page .flex-wrap {
  flex-wrap: wrap;
}
.auth-page .items-center {
  align-items: center;
}
.auth-page .justify-between {
  justify-content: space-between;
}
.auth-page .justify-center {
  justify-content: center;
}
.auth-page .gap-1\.5 {
  gap: 0.375rem;
}
.auth-page .gap-2 {
  gap: 0.5rem;
}
.auth-page .gap-3 {
  gap: 0.75rem;
}
.auth-page .mt-5 {
  margin-top: 1.25rem;
}
.auth-page .pt-4 {
  padding-top: 1rem;
}
.auth-page .px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.auth-page .border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.auth-page .border-indigo-100 {
  border-color: #e0e7ff;
}
.auth-page .space-y-3 > * + * {
  margin-top: 0.75rem;
}
.auth-page .space-y-3\.5 > * + * {
  margin-top: 0.875rem;
}
.auth-page .space-y-4 > * + * {
  margin-top: 1rem;
}
.auth-page .w-full {
  width: 100%;
}
.auth-page .w-1\/6 {
  width: 16.666667%;
}
.auth-page .w-2 {
  width: 0.5rem;
}
.auth-page .w-4 {
  width: 1rem;
}
.auth-page .w-5 {
  width: 1.25rem;
}
.auth-page .w-12 {
  width: 3rem;
}
.auth-page .w-14 {
  width: 3.5rem;
}
.auth-page .h-2 {
  height: 0.5rem;
}
.auth-page .h-4 {
  height: 1rem;
}
.auth-page .h-5 {
  height: 1.25rem;
}
.auth-page .h-11 {
  height: 2.75rem;
}
.auth-page .h-12 {
  height: 3rem;
}
.auth-page .h-px {
  height: 1px;
}
.auth-page .h-full {
  height: 100%;
}
.auth-page .max-w-sm {
  max-width: 24rem;
}
.auth-page .max-w-md {
  max-width: 28rem;
}
.auth-page .rounded-lg {
  border-radius: 0.5rem;
}
.auth-page .rounded-xl {
  border-radius: 0.75rem;
}
.auth-page .rounded-full {
  border-radius: 9999px;
}
.auth-page .border {
  border-width: 1px;
  border-style: solid;
}
.auth-page .border-2 {
  border-width: 2px;
  border-style: solid;
}
.auth-page .border-gray-100 {
  border-color: #f3f4f6;
}
.auth-page .border-gray-200 {
  border-color: #e5e7eb;
}
.auth-page .border-gray-300 {
  border-color: #d1d5db;
}
.auth-page .border-red-200 {
  border-color: #fecaca;
}
.auth-page .bg-white {
  background-color: #fff;
}
.auth-page .bg-gray-50 {
  background-color: #f9fafb;
}
.auth-page .bg-gray-50\/50 {
  background-color: rgba(249, 250, 251, 0.5);
}
.auth-page .bg-gray-200 {
  background-color: #e5e7eb;
}
.auth-page .bg-gray-300 {
  background-color: #d1d5db;
}
.auth-page .bg-red-50 {
  background-color: #fef2f2;
}
.auth-page .bg-indigo-500 {
  background-color: #6366f1;
}
.auth-page .bg-no-repeat {
  background-repeat: no-repeat;
}
.auth-page .bg-right {
  background-position: right center;
}
.auth-page .object-cover {
  object-fit: cover;
}
.auth-page .p-4 {
  padding: 1rem;
}
.auth-page .p-6 {
  padding: 1.5rem;
}
.auth-page .px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.auth-page .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.auth-page .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.auth-page .px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.auth-page .py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.auth-page .pt-8 {
  padding-top: 2rem;
}
.auth-page .pb-8 {
  padding-bottom: 2rem;
}
.auth-page .pl-10 {
  padding-left: 2.5rem;
}
.auth-page .pr-4 {
  padding-right: 1rem;
}
.auth-page .pr-11 {
  padding-right: 2.75rem;
}
.auth-page .mb-1 {
  margin-bottom: 0.25rem;
}
.auth-page .mb-1\.5 {
  margin-bottom: 0.375rem;
}
.auth-page .mb-4 {
  margin-bottom: 1rem;
}
.auth-page .mb-5 {
  margin-bottom: 1.25rem;
}
.auth-page .mb-6 {
  margin-bottom: 1.5rem;
}
.auth-page .mt-1 {
  margin-top: 0.25rem;
}
.auth-page .mt-2 {
  margin-top: 0.5rem;
}
.auth-page .mt-4 {
  margin-top: 1rem;
}
.auth-page .mt-6 {
  margin-top: 1.5rem;
}
.auth-page .my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.auth-page .text-left {
  text-align: left;
}
.auth-page .text-center {
  text-align: center;
}
.auth-page .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.auth-page .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.auth-page .text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.auth-page .font-medium {
  font-weight: 500;
}
.auth-page .font-semibold {
  font-weight: 600;
}
.auth-page .font-bold {
  font-weight: 700;
}
.auth-page .font-extrabold {
  font-weight: 800;
}
.auth-page .leading-tight {
  line-height: 1.25;
}
.auth-page .text-black {
  color: #000;
}
.auth-page .text-gray-400 {
  color: #9ca3af;
}
.auth-page .text-gray-500 {
  color: #6b7280;
}
.auth-page .text-gray-600 {
  color: #4b5563;
}
.auth-page .text-gray-700 {
  color: #374151;
}
.auth-page .text-gray-900 {
  color: #111827;
}
.auth-page .text-red-600 {
  color: #dc2626;
}
.auth-page .text-indigo-600 {
  color: #4f46e5;
}
.auth-page .text-white {
  color: #fff;
}
.auth-page .shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.auth-page .shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.auth-page .shadow-indigo-600\/25 {
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.25);
}
.auth-page .bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.auth-page .from-indigo-600 {
  --tw-gradient-from: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #fff0);
}
.auth-page .to-purple-600 {
  --tw-gradient-to: #9333ea;
}
/* Gradiente botón principal si faltan variables de Tailwind */
.auth-page .bg-gradient-to-r.from-indigo-600.to-purple-600 {
  background-image: linear-gradient(to right, #4f46e5, #9333ea);
}
.auth-page .hover\:from-indigo-700.hover\:to-purple-700:hover {
  background-image: linear-gradient(to right, #4338ca, #7e22ce);
}
.auth-page .hover\:from-indigo-700:hover {
  --tw-gradient-from: #4338ca;
}
.auth-page .hover\:to-purple-700:hover {
  --tw-gradient-to: #7e22ce;
}
.auth-page .hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}
.auth-page .hover\:border-gray-300:hover {
  border-color: #d1d5db;
}
.auth-page .hover\:text-gray-900:hover {
  color: #111827;
}
.auth-page .hover\:text-indigo-700:hover {
  color: #4338ca;
}
.auth-page .hover\:underline:hover {
  text-decoration: underline;
}
.auth-page .transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
}
.auth-page .transition-all {
  transition-property: all;
  transition-duration: 0.2s;
}
.auth-page .transition-transform {
  transition-property: transform;
}
.auth-page .duration-200 {
  transition-duration: 0.2s;
}
.auth-page .duration-300 {
  transition-duration: 0.3s;
}
.auth-page .ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.auth-page .cursor-pointer {
  cursor: pointer;
}
.auth-page .top-1\/2 {
  top: 50%;
}
.auth-page .left-3 {
  left: 0.75rem;
}
.auth-page .right-3 {
  right: 0.75rem;
}
.auth-page .-translate-y-1\/2 {
  transform: translateY(-50%);
}
.auth-page .active\:scale-\[0\.98\]:active {
  transform: scale(0.98);
}
.auth-page .focus\:outline-none:focus {
  outline: none;
}
.auth-page .focus\:border-indigo-600:focus {
  border-color: #4f46e5;
}
.auth-page .focus\:bg-white:focus {
  background-color: #fff;
}
.auth-page .focus\:ring-2:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #4f46e5;
}
.auth-page .focus\:ring-4:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(79, 70, 229, 0.2);
}
.auth-page .focus\:ring-gray-200:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px #e5e7eb;
}
.auth-page .focus\:ring-indigo-600\/20:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(79, 70, 229, 0.2);
}
.auth-page .focus\:ring-offset-0:focus {
  outline-offset: 0;
}
.auth-page .disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.auth-page .disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.auth-page .disabled\:transform-none:disabled {
  transform: none;
}
.auth-page .placeholder\:text-gray-400::placeholder {
  color: #9ca3af;
}
.auth-page .group:focus-within .group-focus-within\:text-indigo-600 {
  color: #4f46e5;
}
.auth-page .rounded {
  border-radius: 0.25rem;
}
.auth-page .animate-spin {
  animation: auth-spin 1s linear infinite;
}
@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-page .opacity-25 {
  opacity: 0.25;
}
.auth-page .opacity-75 {
  opacity: 0.75;
}

@media (min-width: 1024px) {
  .auth-page .lg\:flex {
    display: flex !important;
  }
  .auth-page .lg\:hidden {
    display: none !important;
  }
  .auth-page .lg\:w-1\/2 {
    width: 50%;
  }
  .auth-page .lg\:pt-0 {
    padding-top: 0;
  }
}
