@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --g:  #1d7a3e;
    --gl: #28a854;
    --y:  #c9b800;
    --yl: #f0dc00;
    --dark: #0b140d;
    --card: #131f16;
    --border: rgba(255,255,255,0.07);
    --text: #e8ede9;
    --muted: #7a917d;
	
	
	  /* Paleta principal */
  --black:          #000000;
  --surface-0:      #080808;
  --surface-1:      #111111;
  --surface-2:      #181818;
  --surface-3:      #222222;
  --surface-4:      #2C2C2C;

  /* Crema — bordes y texto */
  --cream-bright:   #F5F0E8;
  --cream-mid:      #C8C0AD;
  --cream-dim:      #7A7268;
  --cream-ghost:    rgba(245,240,232,0.08);
  --cream-subtle:   rgba(245,240,232,0.14);
  --cream-hover:    rgba(245,240,232,0.20);

  /* Verde fosforescente */
  --neon:           #39FF14;
  --neon-dim:       rgba(57,255,20,0.18);
  --neon-mid:       rgba(57,255,20,0.35);
  --neon-glow:      0 0 0 3px rgba(57,255,20,0.22), 0 0 12px rgba(57,255,20,0.12);

  /* Naranja marca */
  --brand:          #E8440A;
  --brand-lt:       #FF6835;
  --brand-dk:       #B33207;
  --brand-glow:     rgba(232,68,10,0.20);

  /* Semánticos */
  --danger:         #FF4444;
  --danger-dim:     rgba(255,68,68,0.14);

  /* Radio */
  --r-sm:   5px;
  --r-md:   9px;
  --r-lg:   14px;
  --r-xl:   22px;
  --r-pill: 999px;

  /* Transiciones */
  --tr-fast:  140ms ease;
  --tr-base:  200ms ease;

  /* Tipografía */
  --ff:  'Barlow', sans-serif;
  --fh:  'Barlow Condensed', sans-serif;

  /* Altura estándar de control */
  --ctrl-h: 44px;
	
	
	
}

html, body {
    height: 100%;
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow: hidden;
}

/* ── Fondo con patrón geométrico ── */
.bg {
    position: fixed; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(29,122,62,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,184,0,0.08) 0%, transparent 60%),
        var(--dark);
}
.bg-lines {
    position: fixed; inset: 0; z-index: 0; overflow: hidden; opacity: 0.35;
}
.bg-lines::before {
    content: '';
    position: absolute; inset: -50%;
    background-image:
        repeating-linear-gradient(60deg, transparent, transparent 48px, rgba(29,122,62,0.15) 48px, rgba(29,122,62,0.15) 49px),
        repeating-linear-gradient(-60deg, transparent, transparent 48px, rgba(29,122,62,0.08) 48px, rgba(29,122,62,0.08) 49px);
}

select {
  width: 100%;
  height: var(--ctrl-h);
  padding: 0 14px;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-bright);
  background: var(--surface-2);
  border: 1px solid var(--cream-subtle);
  border-radius: var(--r-md);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color var(--tr-base),
    background    var(--tr-base),
    box-shadow    var(--tr-base);
  caret-color: var(--neon);
}

select:hover {
  background: var(--surface-3);
  border-color: var(--cream-mid);
}


/* ── Layout ── */
.wrap {
    position: relative; z-index: 1;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 480px;
}

/* ── Panel izquierdo — Branding ── */
.brand-panel {
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 4rem 5rem;
    animation: fadeUp 0.7s ease both;
}
.brand-eyebrow {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--y); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 10px;
}
.brand-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--y);
}
.brand-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9vw, 128px);
    line-height: 0.88;
    color: #fff;
    letter-spacing: 0.02em;
}
.brand-logo span { color: var(--gl); }
.brand-tagline {
    margin-top: 1.5rem;
    font-size: 15px; color: var(--muted); font-weight: 300;
    max-width: 340px; line-height: 1.6;
}
.brand-dots {
    display: flex; gap: 8px; margin-top: 3rem;
}
.brand-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border);
}
.brand-dots span:first-child { background: var(--gl); }
.brand-dots span:nth-child(2) { background: var(--y); opacity: 0.6; }

/* ── Panel derecho — Formulario ── */
.form-panel {
    display: flex;
    justify-content: center;

    padding: 2rem;
    border-left: 1px solid var(--border);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);

    overflow-y: auto;
    overflow-x: hidden;
	scrollbar-color: #00ff55 #000000;

    height: 100vh;

    align-items: flex-start;
}
.form-box {
        width: 100%;
    max-width: 360px;

    padding-top: 3rem;
    padding-bottom: 3rem;
}
.form-header {
    margin-bottom: 2.5rem;
}
.form-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; letter-spacing: 0.04em; color: #fff;
    margin-bottom: 6px;
}
.form-header p { font-size: 13px; color: var(--muted); }

/* ── Inputs ── */
.field { margin-bottom: 1.25rem; }
.field label {
    display: block;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px;
}
.input-wrap { position: relative; }
.input-wrap svg {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; stroke: var(--muted);
    pointer-events: none; flex-shrink: 0;
}
.field date {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 14px 13px 42px;
    color: var(--text); font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.field input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 14px 13px 42px;
    color: var(--text); font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.field input:focus {
    border-color: var(--gl);
    background: rgba(40,168,84,0.06);
}
.field input::placeholder { color: var(--muted); }

/* ── Error ── */
.alert-error {
    background: rgba(220,60,60,0.12);
    border: 1px solid rgba(220,60,60,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px; color: #ff8080;
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 8px;
}
.alert-error svg { width: 15px; height: 15px; stroke: #ff8080; flex-shrink: 0; }

/* ── Botón ── */
.btn-login {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--g) 0%, var(--gl) 100%);
    border: none; border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 0.1em;
    color: #fff; cursor: pointer;
    position: relative; overflow: hidden;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}
.btn-login:hover { opacity: 0.92; }
.btn-login:active { transform: scale(0.985); }
.btn-login::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08));
}

/* ── Footer ── */
.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 11px; color: var(--muted);
    text-align: center;
}

.logo-responsivo {
            
            width: 80%; 
            
            /* Pero nunca será más grande que su tamaño original (evita que se pixele) */
            max-width: 300px; 
            
            /* Mantiene la proporción para que no se deforme */
            height: auto; 
            
            display: block;
            margin: 0 auto; /* Centra la imagen si el contenedor es más ancho */
        }

        .contenedor {
            width: 80%; /* Al cambiar el tamaño de la ventana, esto cambia */
            margin: auto;
            border: 2px none#ccc;
        }

.autoScroll {
  height: 5em;
  line-height: 1em;


  width: 100%;
  border: 1px solid;
	overflow:auto;
	  overflow-x: hidden;
}


@keyframes fadeUp {
    from { opacity:0; transform:translateY(18px); }
    to   { opacity:1; transform:translateY(0);    }
}

@media (max-width: 768px) {
    .wrap { grid-template-columns: 1fr; }
    .brand-panel { display: none; }
    .form-panel { border-left: none; }
}