/* ═══════════════════════════════════════════════════════════════════════
   Ekrani i hyrjes — paraqitje e ndare ne dy pjese.
   Majtas: heroi i brand-it (i erret gjithmone). Djathtas: formulari.
   Nen 900px te dyja pjeset rreshtohen vertikalisht dhe heroi zvogelohet
   ne nje kokë kompakte, qe formulari te mbetet i arritshem pa scroll.
   ═══════════════════════════════════════════════════════════════════════ */

.hyrja-faqe {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 100vh;
    width: 100%;
}

/* ── Heroi ─────────────────────────────────────────────────────────────── */

.hyrja-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem clamp(2rem, 5vw, 5rem);
    background: linear-gradient(135deg, #0B1220 0%, #0F172A 45%, #1E293B 100%);
    color: #F1F5F9;
    isolation: isolate;
}

/* Dy sfera drite qe i japin thellesi sfondit. Te vendosura jashte qendres
   qe te mos konkurrojne me tekstin, dhe me blur te larte qe te mbeten
   atmosfere — jo forma te dallueshme. */
.hyrja-hero::before,
.hyrja-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.hyrja-hero::before {
    width: 480px; height: 480px;
    top: -140px; right: -120px;
    background: rgba(249, 115, 22, .30);
}

.hyrja-hero::after {
    width: 380px; height: 380px;
    bottom: -130px; left: -100px;
    background: rgba(163, 230, 53, .17);
}

.hyrja-logo {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 2.5rem;
}

.hyrja-logo-shenje {
    width: 52px; height: 52px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    box-shadow: 0 8px 22px rgba(249, 115, 22, .42);
}

.hyrja-logo-tekst {
    font-family: "Barlow Condensed", "Barlow", "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
}

.hyrja-logo-nen {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #FB923C;
    font-weight: 700;
    margin-top: .3rem;
}

.hyrja-titull {
    font-family: "Barlow Condensed", "Barlow", "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 4.6vw, 3.9rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin: 0 0 1.15rem;
}

.hyrja-titull em {
    font-style: normal;
    background: linear-gradient(135deg, #FB923C 0%, #A3E635 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hyrja-nentitull {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 46ch;
    margin: 0 0 2.5rem;
}

.hyrja-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .95rem;
}

.hyrja-lista li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .925rem;
    color: #CBD5E1;
}

.hyrja-pike {
    width: 26px; height: 26px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(163, 230, 53, .14);
    border: 1px solid rgba(163, 230, 53, .32);
    color: #A3E635;
    font-size: .8rem;
    font-weight: 700;
}

/* ── Pjesa e formularit ────────────────────────────────────────────────── */

.hyrja-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--mud-palette-surface);
}

.hyrja-forma {
    width: 100%;
    max-width: 392px;
}

.hyrja-forma-titull {
    font-family: "Barlow Condensed", "Barlow", "Segoe UI", sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin: 0 0 .35rem;
    color: var(--mud-palette-text-primary);
}

.hyrja-forma-nen {
    font-size: .9rem;
    color: var(--mud-palette-text-secondary);
    margin: 0 0 2rem;
}

.hyrja-fund {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--mud-palette-divider);
    font-size: .75rem;
    color: var(--mud-palette-text-secondary);
    text-align: center;
    line-height: 1.6;
}

/* ── Ekrane te ngushta ─────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hyrja-faqe {
        grid-template-columns: 1fr;
        min-height: 100dvh;
    }

    .hyrja-hero {
        padding: 2rem 1.5rem 2.25rem;
        justify-content: flex-start;
    }

    /* Ne vertikal, teksti i gjate i heroit zë hapesiren e formularit —
       ndaj mbahet vetem identiteti dhe titulli. */
    .hyrja-nentitull,
    .hyrja-lista {
        display: none;
    }

    .hyrja-logo { margin-bottom: 1.5rem; }
    .hyrja-titull { font-size: 2.1rem; margin-bottom: 0; }
    .hyrja-panel { padding: 2.25rem 1.5rem 3rem; }
}
