
:root {
    --deep: rgba(94, 135, 176, 0.8); /*   #1D2B1E;*/
    --deep-2: #263524;
    --sage: #94A184;
    --sage-dim: rgba(94, 135, 176, 1.0);    
    --cream: #F6F2E8;
    --ink: #292722;
    --ink-soft: #6B675D;
    --brass: #A9814F;
    --brass-dim: #8C6B3F;
    --line: rgba(94, 135, 176, 1.0); /*    rgba(41,39,34,0.14);*/
}

/* :root {
    --deep: #1D2B1E;
    --deep-2: #263524;
    --sage: #94A184;
    --sage-dim: #6E7A61;
    --cream: #F6F2E8;
    --ink: #292722;
    --ink-soft: #6B675D;
    --brass: #A9814F;
    --brass-dim: #8C6B3F;
    --line: rgba(41,39,34,0.14);
}*/
    body.login{
        margin:0;
        font-family:'Sora', sans-serif;
        color:var(--ink);
        background:var(--cream);
        -webkit-font-smoothing:antialiased;
    }
    body.login header,
    body.login #logo{ display:none; }

    .auth-screen{
        min-height:100vh;
        display:grid;
        grid-template-columns:1.05fr 1fr;
    }

    /* ---- left brand panel ---- */
    .auth-brand {
        position: relative;
        background: radial-gradient(circle at 30% 24%, rgba(169,129,79,0.16), transparent 55%), linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
        color: var(--cream);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 4.5rem 4rem;
        overflow: hidden;
    }

        .auth-brand::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cpath d='M120 10 C60 60, 40 120, 120 230 C200 120, 180 60, 120 10 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1.4'/%3E%3C/svg%3E");
            background-repeat: repeat;
            opacity: 0.9;
            pointer-events: none;
        }

    .auth-glow {
        position: absolute;
        top: 38%;
        left: 18%;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(169,129,79,0.28) 0%, rgba(169,129,79,0) 68%);
        filter: blur(2px);
        animation: auth-breathe 7s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes auth-breathe {
        0%,100% {
            transform: scale(1);
            opacity: 0.75;
        }

        50% {
            transform: scale(1.18);
            opacity: 1;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .auth-glow {
            animation: none;
        }
    }

    .auth-brand-top {
        position: relative;
        z-index: 1;
    }

    .auth-logo-img {
        max-height: 56px;
        width: auto;
        margin-bottom: 2rem;
        filter: brightness(0) invert(1);
        opacity: 0.92;
    }

    .auth-eyebrow {
        font-size: 12px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--sage);
        margin: 0 0 1.6rem;
    }

    .auth-wordmark {
        font-family: 'Fraunces', serif;
        font-weight: 400;
        font-size: clamp(2.2rem, 4vw, 3rem);
        line-height: 1.08;
        margin: 0;
    }

    .auth-tagline {
        margin: 1.4rem 0 0;
        max-width: 340px;
        font-size: 15px;
        line-height: 1.7;
        color: rgba(246,242,232,0.72);
    }

    .auth-brand-bottom {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(246,242,232,0.14);
    }

    .auth-stat .num {
        font-family: 'Fraunces', serif;
        font-size: 1.5rem;
        color: var(--cream);
    }

    .auth-stat .lbl {
        font-size: 12px;
        color: rgba(246,242,232,0.55);
        margin-top: 2px;
    }
    /* ---- right form panel ---- */
    .auth-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        background: var(--cream);
    }

    .auth-card {
        width: 100%;
        max-width: 380px;
    }

        .auth-card h2.bigintro {
            font-family: 'Fraunces', serif;
            font-weight: 400;
            font-size: 2rem;
            margin: 0 0 0.4rem;
            color: var(--ink);
        }

    .auth-card-sub {
        margin: 0 0 2.2rem;
        font-size: 14px;
        color: var(--ink-soft);
    }

    .auth-card .form-group {
        position: relative;
        margin-bottom: 1.6rem;
    }

        .auth-card .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--ink-soft);
            margin-bottom: 0.55rem;
        }

        .auth-card .form-group i.fa {
            position: absolute;
            left: 2px;
            top: 38px;
            font-size: 14px;
            width: 16px;
            text-align: center;
            color: var(--sage-dim);
            pointer-events: none;
        }

    .auth-card .form-control {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1.5px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        color: var(--ink);
        padding: 0.6rem 0.1rem 0.6rem 26px;
        height: auto;
        outline: none;
        transition: border-color 0.2s ease;
    }

        .auth-card .form-control:focus {
            border-bottom-color: var(--brass);
            box-shadow: none;
        }

    .auth-card .form-group:focus-within i.fa {
        color: var(--brass);
    }

    select.form-control {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

    .auth-card hr {
        border-top: 1px solid var(--line);
        margin: 1.6rem 0;
    }

    .auth-card .btn.btn-danger {
        width: 100%;
        background: var(--deep) !important;
        border: none;
        border-radius: 6px;
        padding: 0.9rem 1rem;
        font-family: 'Sora', sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.03em;
        box-shadow: none;
        text-shadow: none;
        transition: background 0.2s ease;
        color: #fff;
        cursor: pointer;
    }

        .auth-card .btn.btn-danger:hover {
            background: #152018 !important;
        }

        .auth-card .btn.btn-danger + .btn.btn-danger {
            margin-top: 0.7rem;
        }

    .auth-card .lable-Error {
        display: block;
        margin-top: 0.8rem;
        font-size: 12.5px;
        color: #B3453B;
    }

    @media (max-width:860px) {
        .auth-screen {
            grid-template-columns: 1fr;
        }

        .auth-brand {
            padding: 3rem 2rem;
            min-height: 240px;
        }

        .auth-brand-bottom {
            display: none;
        }

        .auth-panel {
            padding: 2.5rem 1.5rem;
        }
    }
