/* Auth layout wrapper */
.auth-wrap {
    min-height: calc(100vh - 56px); /* approx navbar height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
}

/* Two-panel card */
.auth-card {
    width: 100%;
    max-width: 980px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border: 1px solid rgba(0,0,0,.08);
}

/* Left panel */
.auth-left {
    background: linear-gradient(135deg, rgba(44, 123, 229, 0.12), rgba(44, 123, 229, 0.04));
    border-right: 1px solid rgba(0,0,0,.06);
}

.auth-left-inner {
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    background: #2c7be5; /* bootstrappy primary */
}

.auth-brand-name {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
    line-height: 1.2;
}

.auth-brand-tag {
    color: rgba(0,0,0,.6);
    font-size: 0.92rem;
    margin-top: 2px;
}

.auth-bullets {
    display: grid;
    gap: 1.1rem;
    margin-top: 0.5rem;
}

.auth-bullet {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.auth-bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 5px;
    background: #2c7be5;
    opacity: 0.9;
}

.auth-bullet-title {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.auth-bullet-sub {
    color: rgba(0,0,0,.6);
    font-size: 0.92rem;
    margin-top: 2px;
}

.auth-footnote {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,.06);
}

.auth-muted {
    color: rgba(0,0,0,.55);
    font-size: 0.9rem;
}

/* Right panel */
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.75rem;
}

.auth-right-inner {
    width: 100%;
    max-width: 420px;
}

/* Form polish */
.auth-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    color: rgba(0,0,0,.6);
    margin-bottom: 1.25rem;
}

/* Make inputs feel premium */
.auth-right .form-control,
.auth-right .form-select {
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
}

.auth-right .btn {
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    font-weight: 600;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 0.9rem;
    font-size: 0.95rem;
}

/* Mobile: single column */
@media (max-width: 991.98px) {
    .auth-card {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    .auth-right {
        padding: 2rem 1.25rem;
    }
}