/* ======================================================================
   Login (auth) — Cohort 8 (Dhaka Bazaar)
   Signature: split layout — navy slab left (brand + bullets) / white right (form).
   ====================================================================== */

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bs-bg-alt, #F8F9FB);
    font-family: var(--bs-body-font-family, Inter, sans-serif);
}
@media (min-width: 992px) {
    .auth-page { grid-template-columns: 1fr 1fr; }
}

/* ---------- Left navy slab ---------- */
.auth-aside {
    display: none;
    background: var(--bs-primary);
    color: #fff;
    padding: 2.5rem 3rem;
    flex-direction: column;
    justify-content: space-between;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 132, 255, 0.10) 0%, transparent 60%);
}
@media (min-width: 992px) {
    .auth-aside { display: flex; }
}
.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.auth-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: #fff;
    border-radius: 0.25rem;
    padding: 4px;
}
.auth-aside-content { max-width: 380px; }
.auth-aside-tagline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 0.75rem;
}
.auth-aside-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin: 0 0 1.75rem;
}
.auth-aside-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.auth-aside-bullets li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}
.auth-aside-tick {
    width: 24px;
    height: 24px;
    background: var(--bs-secondary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-aside-footer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    margin: 0;
}

/* ---------- Right form panel ---------- */
.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-top: 4px solid var(--bs-secondary);
    border-radius: 0.375rem;
    padding: 2rem 1.75rem;
}
.auth-card-mobile-brand {
    display: inline-block;
    margin-bottom: 1rem;
}
.auth-card-mobile-brand img {
    height: 38px;
    width: auto;
}
@media (min-width: 992px) {
    .auth-card-mobile-brand { display: none; }
}

.auth-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.auth-sub {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
    margin: 0 0 1.25rem;
}

.auth-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.auth-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    color: var(--bs-body-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: background 0.10s ease, border-color 0.10s ease;
}
.auth-social:hover {
    background: var(--bs-light-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-body-color);
}
.auth-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--bs-secondary-color);
    font-size: 0.78rem;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    justify-content: center;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1 1 0;
    border-top: 1px solid var(--bs-border-color);
}

.auth-form-group { margin-bottom: 0.85rem; }
.auth-form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--bs-body-color);
    font-size: 0.85rem;
    font-weight: 600;
}
.auth-form-group .form-control {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    color: var(--bs-body-color);
}
.auth-form-group .form-control:focus {
    border-color: var(--bs-secondary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.auth-form-row .form-check { font-size: 0.85rem; color: var(--bs-body-color); }
.auth-forgot {
    color: var(--bs-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}
.auth-forgot:hover { color: #EA580C; text-decoration: underline; }

.auth-submit {
    width: 100%;
    background: var(--bs-secondary);
    color: #fff !important;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.10s ease;
}
.auth-submit:hover { background: #EA580C; }

.auth-prompt {
    text-align: center;
    color: var(--bs-secondary-color);
    font-size: 0.88rem;
    margin: 1.25rem 0 0;
}
.auth-prompt a {
    color: var(--bs-secondary);
    font-weight: 700;
    text-decoration: none;
}
.auth-prompt a:hover { color: #EA580C; text-decoration: underline; }
