/* Brikon auth pages */
:root {
    --brikon-bg: #f5f1e8;
    --brikon-cream: #fbf8f1;
    --brikon-ink: #111111;
    --brikon-ink-soft: #2f2f2f;
    --brikon-gold: #ffce00;
    --brikon-gold-dark: #e0b800;
    --brikon-border: rgba(17, 17, 17, 0.08);
    --brikon-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

body.brikon-auth-body {
    background: radial-gradient(circle at top left, rgba(255, 206, 0, 0.16), transparent 34%), linear-gradient(180deg, #ffffff 0%, var(--brikon-bg) 100%);
    min-height: 100vh;
    color: var(--brikon-ink);
    overflow: hidden;
}

.brikon-auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

    .brikon-auth-shell > .login-content > .row {
        min-height: 100vh;
    }

.brikon-auth-hero {
    position: relative;
    display: flex;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f10 0%, #191919 55%, #2a2413 100%);
    color: #fff;
    min-height: 100vh;
    padding: 3rem;
}

.brikon-auth-side-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: #111;
}

.brikon-auth-desktop-image-panel {
    display: none;
}

@media (min-width: 1200px) {
    .brikon-auth-desktop-image-panel {
        display: block;
    }
}

.brikon-auth-side-image-panel img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.brikon-login-body .brikon-auth-side-image-panel img {
    height: 112vh;
    transform: translateY(-6%);
}

.brikon-auth-hero::before,
.brikon-auth-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.brikon-auth-hero::before {
    width: 20rem;
    height: 20rem;
    right: -6rem;
    top: -6rem;
    background: radial-gradient(circle, rgba(255, 206, 0, 0.24) 0%, rgba(255, 206, 0, 0) 72%);
}

.brikon-auth-hero::after {
    width: 18rem;
    height: 18rem;
    left: -5rem;
    bottom: -7rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.brikon-auth-hero-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
}

.brikon-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

    .brikon-auth-brand img {
        display: block;
    }

.brikon-auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brikon-auth-hero h1 {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.brikon-auth-hero p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
}

.brikon-auth-bullets {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .brikon-auth-bullets li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.86);
    }

        .brikon-auth-bullets li::before {
            content: "";
            width: 0.7rem;
            height: 0.7rem;
            border-radius: 999px;
            background: var(--brikon-gold);
            box-shadow: 0 0 0 0.35rem rgba(255, 206, 0, 0.16);
            flex: 0 0 auto;
        }

.brikon-auth-visual {
    position: relative;
    flex: 1;
    min-height: 0;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--brikon-shadow);
    background: rgba(255, 255, 255, 0.04);
}

    .brikon-auth-visual img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.brikon-auth-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3.5vh, 2rem) 1.5rem;
    overflow-y: auto;
    max-height: 100vh;
}

.brikon-auth-wide-body .brikon-auth-panel {
    align-items: flex-start;
    padding: clamp(1rem, 3vh, 2rem) 1.5rem;
    overflow-y: auto;
}

.brikon-auth-card {
    width: 100%;
    max-width: 30rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--brikon-border);
    border-radius: 1.75rem;
    box-shadow: var(--brikon-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.brikon-login-body .brikon-auth-card {
    width: min(100%, clamp(27rem, 32vw, 34rem));
    max-width: none;
}

.brikon-auth-wide-body .brikon-auth-card {
    width: min(100%, clamp(27rem, 32vw, 34rem));
    max-width: none;
}

.brikon-auth-card-body {
    padding: 2rem;
}

.brikon-login-body .brikon-auth-card-body {
    padding: 1.7rem;
}

.brikon-auth-wide-body .brikon-auth-card-body {
    padding: 1.7rem;
}

.brikon-auth-card-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brikon-auth-logo-row {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

    .brikon-auth-logo-row img {
        display: block;
    }

.brikon-auth-kicker {
    color: #6b6b6b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.brikon-auth-title {
    margin: 0;
    color: var(--brikon-ink);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brikon-auth-copy {
    color: #5c5c5c;
    margin: 0;
}

.brikon-auth-form .form-group,
.brikon-auth-form .floating-label {
    margin-bottom: 1rem;
}

.brikon-auth-form label,
.brikon-auth-form .form-label {
    color: #202020;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.brikon-auth-form .form-control {
    min-height: 3.1rem;
    border-radius: 1rem;
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: none;
    padding-left: 1rem;
    padding-right: 1rem;
    background: #fff;
}

    .brikon-auth-form .form-control:focus {
        border-color: var(--brikon-gold-dark);
        box-shadow: 0 0 0 0.2rem rgba(255, 206, 0, 0.2);
    }

.brikon-auth-button,
.brikon-auth-button.btn {
    width: 100%;
    min-height: 3.2rem;
    border-radius: 999px;
    border: 1px solid var(--brikon-ink);
    background: linear-gradient(180deg, var(--brikon-gold) 0%, #ffd633 100%);
    color: var(--brikon-ink) !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 24px rgba(255, 206, 0, 0.24);
}

    .brikon-auth-button:hover,
    .brikon-auth-button:focus,
    .brikon-auth-button.btn:hover,
    .brikon-auth-button.btn:focus {
        background: linear-gradient(180deg, #ffd94a 0%, var(--brikon-gold) 100%);
        border-color: var(--brikon-ink);
        color: var(--brikon-ink) !important;
    }

.brikon-auth-link {
    color: var(--brikon-ink);
    font-weight: 700;
    text-decoration: none;
}

    .brikon-auth-link:hover {
        color: #000;
        text-decoration: underline;
    }

.brikon-auth-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #3d3d3d;
    font-weight: 600;
}

    .brikon-auth-toggle input[type="checkbox"] {
        accent-color: var(--brikon-gold-dark);
        width: 1.1rem;
        height: 1.1rem;
    }

.brikon-auth-note {
    color: #6b6b6b;
    font-size: 0.94rem;
}

.brikon-auth-progress .progress {
    height: 0.75rem;
    border-radius: 999px;
    background: #ece6d6;
    overflow: hidden;
}

.brikon-auth-progress .progress-bar {
    border-radius: 999px;
    font-weight: 700;
}

.brikon-auth-reqs {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    color: #a33d3d;
}

    .brikon-auth-reqs li.valid {
        color: #2e8b57;
        text-decoration: line-through;
    }

.brikon-auth-footer {
    margin-top: 1.25rem;
    color: #666;
    font-size: 0.92rem;
}

.brikon-auth-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.12), transparent);
    margin: 1.25rem 0;
}

.brikon-auth-panel-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .brikon-auth-panel-inline > * {
        margin: 0;
    }

@media (max-width: 767.98px) {
    body.brikon-auth-body {
        overflow: auto;
    }

    .brikon-auth-hero {
        min-height: auto;
        padding: 1.5rem;
    }

    .brikon-auth-side-image-panel {
        min-height: auto;
    }

        .brikon-auth-side-image-panel img {
            height: auto;
        }

    .brikon-login-body .brikon-auth-side-image-panel img {
        height: auto;
        transform: none;
    }

    .brikon-auth-panel {
        min-height: auto;
        padding: 1.25rem;
        max-height: none;
    }

    .brikon-auth-card-body {
        padding: 1.5rem;
    }

    .brikon-auth-title {
        font-size: 1.65rem;
    }
}
