:root {
    --eventos-bg: #020617;
    --eventos-bg-2: #0f172a;
    --eventos-panel: rgba(255, 255, 255, 0.96);
    --eventos-panel-dark: rgba(255, 255, 255, 0.08);
    --eventos-border: rgba(255, 255, 255, 0.12);
    --eventos-border-light: #e2e8f0;
    --eventos-text: #0f172a;
    --eventos-muted: #64748b;
    --eventos-white: #ffffff;
    --eventos-primary: #0ea5e9;
    --eventos-primary-dark: #0284c7;
    --eventos-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
    --eventos-radius-xl: 32px;
    --eventos-radius-lg: 20px;
    --eventos-radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--eventos-text);
    background: #f8fafc;
}

.eventos-auth-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 25% 0%, rgba(99, 102, 241, 0.09), transparent 55%),
        radial-gradient(ellipse at 75% 100%, rgba(14, 165, 233, 0.07), transparent 55%),
        #f1f5f9;
}

.eventos-auth-shell {
    max-width: 1280px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.eventos-auth-card {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    border-radius: var(--eventos-radius-xl);
    background: var(--eventos-panel);
    box-shadow: var(--eventos-shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.eventos-auth-brand-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    color: var(--eventos-white);
}

.eventos-auth-brand-panel::before,
.eventos-auth-brand-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.7;
}

.eventos-auth-brand-panel::before {
    width: 280px;
    height: 280px;
    left: -60px;
    top: -40px;
    background: rgba(59, 130, 246, 0.35);
}

.eventos-auth-brand-panel::after {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -80px;
    background: rgba(6, 182, 212, 0.22);
}

.eventos-auth-brand-inner {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.eventos-auth-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.25);
    color: #bae6fd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eventos-auth-heading {
    margin: 28px 0 0;
    max-width: 560px;
    font-size: 58px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.eventos-auth-copy {
    margin: 22px 0 0;
    max-width: 540px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}

.eventos-auth-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.eventos-auth-feature {
    padding: 22px;
    border-radius: var(--eventos-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--eventos-border);
    backdrop-filter: blur(10px);
}

.eventos-auth-feature-title {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eventos-auth-feature-copy {
    margin: 12px 0 0;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.7;
}

.eventos-auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.98);
}

.eventos-auth-form-wrap {
    width: 100%;
    max-width: 420px;
}

.eventos-auth-eyebrow {
    color: var(--eventos-primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.eventos-auth-title {
    margin: 16px 0 0;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.eventos-auth-subtitle {
    margin: 14px 0 0;
    color: var(--eventos-muted);
    font-size: 15px;
    line-height: 1.8;
}

.eventos-form-stack {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.eventos-field-group {
    position: relative;
}

.eventos-field-label {
    display: block;
    margin-bottom: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.eventos-field-label.required::after {
    content: " *";
    color: #dc2626;
}

.eventos-field-input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.eventos-field-input:focus {
    outline: none;
    border-color: var(--eventos-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.eventos-password-toggle {
    position: absolute;
    right: 16px;
    top: 43px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
}

.eventos-auth-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.eventos-auth-link {
    color: var(--eventos-primary-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.eventos-auth-link:hover {
    text-decoration: underline;
}

.eventos-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 16px;
    background: #020617;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease;
}

.eventos-auth-button:hover {
    background: #111827;
}

.eventos-auth-footer {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .eventos-auth-card {
        grid-template-columns: 1fr;
    }

    .eventos-auth-brand-panel {
        display: none;
    }

    .eventos-auth-form-panel {
        padding: 36px 24px;
    }

    .eventos-auth-title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .eventos-auth-shell {
        padding: 18px;
    }

    .eventos-auth-form-panel {
        padding: 28px 18px;
    }

    .eventos-auth-title {
        font-size: 34px;
    }

    .eventos-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eventos-auth-button {
        width: 100%;
    }
}

/* ── Single-column auth card ─────────────────────────────────── */
.eventos-auth-solo-wrap {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 28px;
    padding: 52px 56px 48px;
    box-shadow: 0 4px 6px rgba(15,23,42,0.04), 0 20px 60px rgba(15,23,42,0.10), 0 0 0 1px rgba(15,23,42,0.06);
}

.eventos-auth-logo-area {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.eventos-auth-logo-area img {
    max-height: 56px;
    max-width: 210px;
    object-fit: contain;
}

.eventos-auth-logo-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #0f172a;
}

/* Title / subtitle sizing inside single-column card */
.eventos-auth-solo-wrap .eventos-auth-title {
    font-size: 26px;
    margin-top: 0;
    letter-spacing: -.025em;
}

.eventos-auth-solo-wrap .eventos-auth-subtitle {
    margin-top: 6px;
    font-size: 14px;
}

.eventos-auth-solo-wrap .eventos-form-stack {
    margin-top: 22px;
    gap: 18px;
}

/* Button + link use the injected brand accent colour */
.eventos-auth-solo-wrap .eventos-auth-button {
    background: var(--eos-auth-accent, #4f46e5);
    border-radius: 12px;
    min-height: 50px;
    font-size: 14px;
    letter-spacing: .01em;
}

.eventos-auth-solo-wrap .eventos-auth-button:hover {
    background: var(--eos-auth-accent, #4f46e5);
    opacity: .88;
}

.eventos-auth-solo-wrap .eventos-auth-link {
    color: var(--eos-auth-accent, #4f46e5);
}

.eventos-auth-solo-wrap .eventos-field-input {
    min-height: 50px;
    border-radius: 12px;
    font-size: 14px;
    padding: 0 16px;
}

.eventos-auth-solo-wrap .eventos-field-input:focus {
    border-color: var(--eos-auth-accent, #4f46e5);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--eos-auth-accent, #4f46e5) 15%, transparent);
}

.eventos-auth-solo-wrap .eventos-password-toggle {
    color: var(--eos-auth-accent, #4f46e5);
    top: 40px;
}

.eventos-auth-solo-wrap .eventos-auth-actions {
    margin-top: 24px;
}

@media (max-width: 560px) {
    .eventos-auth-solo-wrap {
        padding: 36px 28px 32px;
        border-radius: 20px;
    }

    .eventos-auth-solo-wrap .eventos-auth-title {
        font-size: 22px;
    }

    .eventos-auth-solo-wrap .eventos-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eventos-auth-solo-wrap .eventos-auth-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
