/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #000; /* casi no se verá, la imagen cubre el fondo */
  color: #111827;
}

/* Utilidades tipo Tailwind necesarias */

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

.flex {
  display: flex;
}

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

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

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

/* Colores de texto */
.text-slate-100 {
  color: #111827;
}

.text-slate-300 {
  color: #374151;
}

.text-slate-400 {
  color: #6b7280;
}

/* Fondo asociado al body (no se ve mucho) */
.bg-slate-950 {
  background-color: #000000;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.6);
}

.border {
  border-width: 1px;
  border-style: solid;
}

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

/* Espaciados y tamaños */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

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

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.max-w-md {
  max-width: 28rem;
}

.w-full {
  width: 100%;
}

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

/* Tipografía */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

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

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

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

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

.tracking-tight {
  letter-spacing: -0.02em;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.uppercase {
  text-transform: uppercase;
}

.leading-relaxed {
  line-height: 1.7;
}

/* Logo */
.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
}

/* Backdrop blur */
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

/* Layout específico de la página */

.page-bg {
  position: relative;
  width: 100%;
  min-height: 100vh;

  /* Imagen de fondo proporcionada */
  background-image: url("images/background.webp");
}

/* Capa para oscurecer suavemente la imagen, sin tono de color */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 2.5rem 1.5rem;
}

/* Tarjeta principal: marrón claro */
.bg-slate-900\/60 {
  /* marrón/beige claro con un pelín de transparencia */
  background-color: rgba(240, 219, 195, 0.97);
}

.border-slate-700\/80 {
  border-color: rgba(184, 143, 106, 0.9);
}

/* Responsivo simple */
@media (min-width: 640px) {
  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
