/**
 * ============================================================================
 * YACHAY PATAZ — Login "Aurora Premium" (Asociación Pataz)
 * ============================================================================
 * Inspirado en lo mejor de 2026: Linear, Vercel, Stripe, Khan Academy.
 * Mesh gradient animado · Glassmorphism · Bento split · Floating labels.
 * ============================================================================
 */

/* ═══════════════════════════════════════════════════════════════
   BODY · FONDO AURORA
   ═══════════════════════════════════════════════════════════════ */
.auth-body{
    margin:0; padding:0;
    font-family: var(--font-sans);
    min-height:100vh;
    color:#fff;
    overflow-x:hidden;
    background: #0E0420;
    position:relative;
}

/* Aurora layer 1 — base oscura morada */
.auth-body::before{
    content:'';
    position:fixed; inset:0; z-index:0;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, #4A1F60 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 100%, #2E1340 0%, transparent 50%),
        linear-gradient(180deg, #1A0832 0%, #0E0420 100%);
}

/* Mesh orbs / blobs animados — los 4 colores de la flor */
.auth-background{
    position:fixed; inset:0; z-index:1;
    pointer-events:none;
    overflow:hidden;
}
.mesh-orb{
    position:absolute;
    border-radius:50%;
    filter: blur(80px);
    opacity:.55;
    will-change: transform;
}
.mesh-orb--purple{
    width: 540px; height: 540px;
    background: radial-gradient(circle at 30% 30%, #9B59B6 0%, #6D2E8B 70%);
    top: -180px; left: -120px;
    animation: orbDrift1 22s ease-in-out infinite;
}
.mesh-orb--magenta{
    width: 480px; height: 480px;
    background: radial-gradient(circle at 60% 40%, #F368B7 0%, #E91E89 70%);
    top: 30%; right: -120px;
    animation: orbDrift2 26s ease-in-out infinite;
}
.mesh-orb--yellow{
    width: 420px; height: 420px;
    background: radial-gradient(circle at 50% 50%, #FFC94A 0%, #F2A900 70%);
    bottom: -160px; left: 30%;
    animation: orbDrift3 30s ease-in-out infinite;
    opacity:.42;
}
.mesh-orb--green{
    width: 380px; height: 380px;
    background: radial-gradient(circle at 50% 50%, #A8D275 0%, #7AB648 70%);
    top: 40%; left: 25%;
    animation: orbDrift4 28s ease-in-out infinite;
    opacity:.30;
}
@keyframes orbDrift1{
    0%,100%{ transform: translate(0,0) scale(1); }
    33%   { transform: translate(80px, 60px) scale(1.1); }
    66%   { transform: translate(-40px, 80px) scale(.95); }
}
@keyframes orbDrift2{
    0%,100%{ transform: translate(0,0) scale(1); }
    50%   { transform: translate(-100px, -60px) scale(1.15); }
}
@keyframes orbDrift3{
    0%,100%{ transform: translate(0,0) scale(1); }
    50%   { transform: translate(100px, -80px) scale(1.1); }
}
@keyframes orbDrift4{
    0%,100%{ transform: translate(0,0) scale(1); }
    33%   { transform: translate(60px, -40px) scale(.9); }
    66%   { transform: translate(-60px, 40px) scale(1.05); }
}

/* Grid sutil overlay */
.auth-body::after{
    content:'';
    position:fixed; inset:0; z-index:2;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* Limpieza legacy */
.bg-overlay,.bg-mountains,.bg-clouds,
.auth-deco,.sparkles-container,.sparkle{ display:none !important; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT PRINCIPAL
   ═══════════════════════════════════════════════════════════════ */
.auth-main{
    position:relative; z-index:10;
    width:100%; min-height:100vh;
    display:flex; align-items:center; justify-content:center;
    padding: 32px 20px 80px;
}

.auth-shell{
    width:100%;
    max-width: 1240px;
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    animation: shellFadeIn .8s cubic-bezier(.22,1,.36,1) both;
}

@keyframes shellFadeIn{
    from{ opacity:0; transform: translateY(16px); }
    to  { opacity:1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   PANEL IZQUIERDO · HERO
   ═══════════════════════════════════════════════════════════════ */
.auth-hero{
    color:#fff;
    position:relative;
    padding: 20px 0;
}

.hero-logo{
    display:inline-flex; align-items:center; justify-content:center;
    padding: 14px 24px;
    background: #FFFFFF;
    border-radius: 18px;
    margin-bottom: 36px;
    transition: transform .35s ease, box-shadow .35s ease;
    animation: heroLogoFloat 4s ease-in-out infinite;
    box-shadow:
        0 8px 24px -6px rgba(0,0,0,.30),
        0 2px 6px -1px rgba(0,0,0,.15);
}
.hero-logo:hover{
    transform: translateY(-3px);
    box-shadow:
        0 14px 32px -8px rgba(0,0,0,.40),
        0 4px 10px -2px rgba(0,0,0,.20);
}
.hero-logo img{ height: 46px; width: auto; display: block; }
@keyframes heroLogoFloat{
    0%,100%{ transform: translateY(0); }
    50%   { transform: translateY(-4px); }
}

.hero-eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(242,169,0,.22), rgba(233,30,137,.18));
    border: 1px solid rgba(255,217,138,.30);
    color:#FFE08A;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-eyebrow .dot{
    width:8px; height:8px; border-radius:50%;
    background:#FFC94A;
    box-shadow: 0 0 12px rgba(255,201,74,.85), 0 0 0 4px rgba(242,169,0,.20);
    animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse{
    0%,100%{ transform:scale(1); }
    50%   { transform:scale(1.25); }
}

.hero-title{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: .98;
    letter-spacing: -2px;
    margin: 0 0 22px;
    color:#FFFFFF;
    text-wrap: balance;
}
.hero-title .accent{
    background: linear-gradient(120deg, #FFE08A 0%, #F2A900 30%, #F368B7 70%, #C9A4DC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift{
    0%,100%{ background-position: 0% 50%; }
    50%   { background-position: 100% 50%; }
}

.hero-subtitle{
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(255,255,255,.78);
    margin: 0 0 36px;
    max-width: 46ch;
    font-weight: 400;
}

/* Bento de stats */
.hero-bento{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
.bento-card{
    background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 16px 14px;
    backdrop-filter: blur(10px);
    transition: transform .35s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.bento-card::after{
    content:'';
    position:absolute; left:0; right:0; bottom:0; height:2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
    opacity:0;
    transition: opacity .3s;
}
.bento-card:hover{
    background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.05) 100%);
    border-color: rgba(255,255,255,.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0,0,0,.35);
}
.bento-card:hover::after{ opacity:1; }
.bento-card__icon{
    width: 34px; height: 34px;
    margin-bottom: 10px;
    border-radius: 10px;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, rgba(242,169,0,.20), rgba(233,30,137,.12));
    color: #FFE08A;
}
.bento-card--magenta .bento-card__icon{
    background: linear-gradient(135deg, rgba(233,30,137,.22), rgba(155,89,182,.14));
    color: #F8B4D9;
}
.bento-card--green .bento-card__icon{
    background: linear-gradient(135deg, rgba(122,182,72,.22), rgba(168,210,117,.14));
    color: #C8E6A0;
}
.bento-card__icon svg{ width:18px; height:18px; }
.bento-card__value{
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800;
    color:#FFFFFF;
    line-height: 1.05;
    margin-bottom: 2px;
    letter-spacing: -.5px;
}
.bento-card__label{
    font-size: 11px;
    color: rgba(255,255,255,.62);
    font-weight: 500;
    letter-spacing: .2px;
}

/* Pilares línea inferior */
.hero-pillars{
    display:flex; gap: 18px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.pillar{
    display:inline-flex; align-items:center; gap:8px;
    color: rgba(255,255,255,.78);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .2px;
}
.pillar__check{
    width: 18px; height: 18px;
    border-radius: 50%;
    display:inline-flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, #7AB648, #5C8E33);
    color: #fff;
    flex-shrink: 0;
}
.pillar__check svg{ width: 11px; height: 11px; stroke-width: 3; }

/* ═══════════════════════════════════════════════════════════════
   PANEL DERECHO · FORM CARD (Glassmorphism)
   ═══════════════════════════════════════════════════════════════ */
.auth-card-wrap{
    position: relative;
    perspective: 1200px;
}

.auth-card{
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 40px 40px 32px;
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    box-shadow:
        0 1px 0 rgba(255,255,255,.10) inset,
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 30px 70px -20px rgba(0,0,0,.55),
        0 12px 30px -10px rgba(46,19,64,.40);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

/* Brillo sutil en hover */
.auth-card::before{
    content:'';
    position:absolute; left:-50%; top:-50%;
    width:200%; height:200%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
                rgba(255,255,255,.10) 0%, transparent 40%);
    pointer-events:none;
    opacity:0;
    transition: opacity .4s;
}
.auth-card:hover::before{ opacity:1; }

/* Ribete superior con los 4 colores de la flor */
.auth-card::after{
    content:'';
    position:absolute; left:0; right:0; top:0;
    height: 3px;
    background: linear-gradient(90deg, #6D2E8B, #E91E89, #F2A900, #7AB648);
    opacity:.85;
}

/* Header del form */
.form-header{ margin-bottom: 24px; }
.form-header__kicker{
    display:inline-flex; align-items:center; gap:6px;
    font-size: 11px; font-weight: 700;
    color: #C9A4DC;
    letter-spacing: 1.6px; text-transform: uppercase;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: rgba(155,89,182,.16);
    border: 1px solid rgba(155,89,182,.30);
    border-radius: 6px;
}
.form-header__kicker svg{ width:12px; height:12px; }
.form-header h2{
    font-family: var(--font-display);
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 6px;
    letter-spacing: -0.6px;
}
.form-header p{
    font-size: 14px;
    color: rgba(255,255,255,.66);
    margin: 0;
    line-height: 1.5;
}

/* ── Selector de Rol — segmented control ── */
.role-selector{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 5px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    margin-bottom: 22px;
}
.role-pill{
    padding: 9px 4px 8px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: rgba(255,255,255,.55);
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all .25s ease;
    display:flex; flex-direction: column;
    align-items: center; gap: 4px;
    position: relative;
}
.role-pill:hover{
    color: rgba(255,255,255,.95);
    background: rgba(255,255,255,.04);
}
.role-pill.active{
    background: linear-gradient(135deg, #6D2E8B 0%, #B71670 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 18px -6px rgba(183,22,112,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.role-pill svg{ width: 16px; height: 16px; }
.role-pill__text{
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ── Floating-label inputs (Material 3 style) ── */
.auth-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.field{
    position: relative;
}
.field__input{
    width: 100%;
    height: 56px;
    padding: 22px 16px 8px 46px;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.10);
    border-radius: 14px;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    caret-color: #F368B7;
}
.field__input::placeholder{ color: transparent; }
.field__input:hover{ border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07); }
.field__input:focus{
    border-color: #C9A4DC;
    background: rgba(255,255,255,.10);
    box-shadow: 0 0 0 4px rgba(155,89,182,.18);
}

.field__label{
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    transition: all .22s cubic-bezier(.22,1,.36,1);
    background: transparent;
    padding: 0 4px;
}
/* Eleva el label cuando hay foco o contenido */
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label{
    top: 14px;
    transform: translateY(0);
    font-size: 11px;
    color: #C9A4DC;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.field__icon{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.45);
    pointer-events: none;
    transition: color .2s;
}
.field__icon svg, .field__icon .lucide-icon{ width: 18px; height: 18px; }
.field:focus-within .field__icon{ color: #F368B7; }

.field__toggle{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.45);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: color .2s, background .2s;
}
.field__toggle:hover{ color: #F368B7; background: rgba(255,255,255,.06); }
.field__toggle svg, .field__toggle .lucide-icon{ width: 18px; height: 18px; }

/* Opciones */
.auth-options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 0;
    flex-wrap: wrap;
    gap: 10px;
}
.remember-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    cursor: pointer;
    user-select: none;
}
.remember-checkbox{
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(255,255,255,.30);
    background: rgba(255,255,255,.06);
    cursor: pointer;
    display:inline-flex; align-items:center; justify-content:center;
    transition: all .2s;
    position: relative;
}
.remember-checkbox:checked{
    background: linear-gradient(135deg, #6D2E8B, #E91E89);
    border-color: transparent;
}
.remember-checkbox:checked::after{
    content:'';
    width: 10px; height: 6px;
    border: 2px solid #fff;
    border-top: 0; border-right: 0;
    transform: rotate(-45deg) translateY(-1px);
}
.forgot-link{
    font-size: 13px;
    font-weight: 600;
    color: #F8B4D9;
    text-decoration: none;
    transition: color .2s;
}
.forgot-link:hover{ color: #FFE08A; text-decoration: underline; }

/* ── Botón Aurora (magnético + ripple) ── */
.btn-login{
    width: 100%;
    height: 56px;
    background: linear-gradient(120deg, #6D2E8B 0%, #B71670 50%, #E91E89 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    transition: background-position .5s, transform .15s, box-shadow .3s;
    box-shadow:
        0 12px 30px -8px rgba(233,30,137,.55),
        0 4px 12px -2px rgba(109,46,139,.40),
        inset 0 1px 0 rgba(255,255,255,.20);
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn-login:hover:not(:disabled){
    background-position: right center;
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px -8px rgba(233,30,137,.65),
        0 6px 16px -2px rgba(109,46,139,.50),
        inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-login:active:not(:disabled){ transform: translateY(0); }
.btn-login:disabled{ opacity: .85; cursor: not-allowed; }
.btn-login svg{ width: 18px; height: 18px; }
.btn-login__ripple{
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,.4);
    pointer-events: none;
    animation: ripple .65s linear;
}
@keyframes ripple{
    to{ transform: scale(3.5); opacity: 0; }
}

.btn-loading{ display:inline-flex; align-items:center; gap:10px; }
.spinner{
    width: 18px; height: 18px;
    border: 3px solid rgba(255,255,255,.30);
    border-top: 3px solid #FFFFFF;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* Card footer */
.card-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap;
}
.ssl-badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #A8D275;
}
.ssl-badge svg, .ssl-badge .lucide-icon{ width: 14px; height: 14px; }
.help-link{
    font-size: 12px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    display:inline-flex; align-items:center; gap:5px;
}
.help-link:hover{ color: #F8B4D9; }
.dot-sep{ color: rgba(255,255,255,.30); }

/* ── Errores ── */
.auth-errors{
    background: rgba(198,40,40,.18);
    border: 1px solid rgba(198,40,40,.45);
    border-left: 3px solid #FF6B6B;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}
.error-item{
    font-size: 13px;
    color: #FFB8B8;
    margin: 3px 0;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER GLOBAL
   ═══════════════════════════════════════════════════════════════ */
.auth-footer{
    position: relative;
    margin-top: 32px;
    padding: 18px 24px;
    text-align: center;
    z-index: 10;
    background: linear-gradient(to top, rgba(14,4,32,.95) 30%, rgba(14,4,32,.65) 75%, transparent);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.06);
}
.auth-footer::before{
    content:''; position:absolute; left:0; right:0; top:-1px; height:1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(109,46,139,.40) 20%,
        rgba(233,30,137,.40) 40%,
        rgba(242,169,0,.40) 60%,
        rgba(122,182,72,.40) 80%,
        transparent 100%);
}
.footer-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-logo{
    font-size: 12.5px;
    font-weight: 700;
    color: #FFE08A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-logo img{
    background: #FFFFFF;
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.30);
}
.footer-flower{
    display:inline-flex; align-items:center; justify-content:center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    transition: transform .3s ease;
}
.footer-flower:hover{ transform: rotate(15deg) scale(1.05); }
.footer-flower svg{ display:block; }

/* Pill blanca con el logo institucional completo */
.footer-brand-pill{
    display:inline-flex; align-items:center; justify-content:center;
    padding: 8px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow:
        0 6px 16px -4px rgba(0,0,0,.30),
        0 2px 4px -1px rgba(0,0,0,.15);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    line-height: 0;
}
.footer-brand-pill:hover{
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px -6px rgba(0,0,0,.40),
        0 3px 6px -1px rgba(0,0,0,.20);
}
.footer-brand-pill img{
    height: 28px; width: auto; display: block;
}
.footer-separator{ color: rgba(255,255,255,.25); font-size: 11px; }
.footer-text{ font-size: 11.5px; color: rgba(255,255,255,.65); }
.footer-text strong{ color: #C9A4DC; font-weight: 700; }
.footer-links{
    display:inline-flex; align-items:center; gap:14px;
    margin-left: 6px;
}
.footer-link{
    font-size: 11.5px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.footer-link:hover{ color: #F8B4D9; }

/* ═══════════════════════════════════════════════════════════════
   COMPATIBILIDAD — vistas legacy (recuperar / cambiar / bloqueada)
   ═══════════════════════════════════════════════════════════════ */
.auth-container{
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.auth-container .auth-card{
    padding: 44px 38px;
}
.auth-logo{ text-align: center; margin-bottom: 12px; }
.logo-icon{
    font-size: 32px; margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px; height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155,89,182,.30), rgba(233,30,137,.20));
    border: 1px solid rgba(255,255,255,.14);
    color: #FFE08A;
}
.auth-title{
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    letter-spacing: -.4px;
}
.title-yachay{ color: #FFFFFF; }
.title-pataz{
    background: linear-gradient(120deg, #FFE08A, #F368B7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-subtitle{
    color: rgba(255,255,255,.65);
    font-size: 13.5px;
    text-align: center;
    margin-top: 4px;
}
.auth-welcome{
    text-align: center;
    color: #C9A4DC;
    font-weight: 600;
    font-size: 15px;
    margin: 14px 0 20px;
}
.form-input{
    width: 100%;
    padding: 14px 16px 14px 46px;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.10);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 14.5px;
    outline: none;
}
.form-input:focus{
    border-color: #C9A4DC;
    box-shadow: 0 0 0 4px rgba(155,89,182,.18);
}
.form-input::placeholder{ color: rgba(255,255,255,.40); }
.input-wrapper{ position: relative; display: flex; align-items: center; }
.input-icon{
    position: absolute; left: 16px;
    color: rgba(255,255,255,.45);
    pointer-events: none;
}
.input-icon svg, .input-icon .lucide-icon{ width: 18px; height: 18px; }
.toggle-password{
    position: absolute; right: 12px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.45);
    padding: 6px; border-radius: 8px;
    display: flex; align-items: center;
}
.toggle-password:hover{ color: #F368B7; }
.toggle-password svg, .toggle-password .lucide-icon{ width: 18px; height: 18px; }

.auth-message{
    text-align: left;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 16px;
}
.auth-message.success{
    background: rgba(46,125,50,.18);
    color: #A8D275;
    border-left: 3px solid #7AB648;
}
.auth-message.error{
    background: rgba(198,40,40,.18);
    color: #FFB8B8;
    border-left: 3px solid #FF6B6B;
}
.auth-back-link{
    display: block; text-align: center; margin-top: 16px;
    color: rgba(255,255,255,.55);
    font-size: 13px; text-decoration: none;
}
.auth-back-link:hover{ color: #F8B4D9; }
.timer-display{
    font-family: var(--font-display);
    font-size: 48px; font-weight: 800;
    color: #F368B7;
    text-align: center; margin: 20px 0;
    text-shadow: 0 0 24px rgba(243,104,183,.50);
}
.password-strength{
    height: 5px; border-radius: 3px; margin-top: 8px;
    background: rgba(255,255,255,.08); overflow: hidden;
}
.password-strength-bar{
    height: 100%; border-radius: 3px;
    transition: width .3s, background .3s;
    width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px){
    .auth-shell{
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
    }
    .auth-hero{
        text-align: left;
        padding-top: 0;
    }
    .hero-bento{ grid-template-columns: repeat(3, 1fr); }
    .hero-pillars{ flex-direction: column; gap: 10px; }
}

@media (max-width: 575.98px){
    .auth-main{ padding: 16px 14px 80px; }
    .auth-card{ padding: 28px 22px 24px; border-radius: 22px; }
    .hero-title{ font-size: 36px; letter-spacing: -1px; }
    .hero-subtitle{ font-size: 14px; margin-bottom: 24px; }
    .hero-bento{ grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .bento-card{ padding: 12px 8px; }
    .bento-card__value{ font-size: 18px; }
    .bento-card__label{ font-size: 10px; }
    .role-selector{ grid-template-columns: repeat(4, 1fr); }
    .role-pill{ padding: 8px 2px 6px; }
    .role-pill__text{ font-size: 9px; letter-spacing: .3px; }
    .field__input{ font-size: 14px; }
    .mesh-orb{ filter: blur(60px); }
}
