﻿/* ─────────────────────────────────────────────────────
   Design tokens — scoped to page shell only
   ───────────────────────────────────────────────────── */
.hcbi-page-shell {
    --c-orange: #F5A623;
    --c-orange-dark: #E8951A;
    --c-coral: #FF7A37;
}

/* ─────────────────────────────────────────────────────
   Page shell / Layout helpers
   ───────────────────────────────────────────────────── */
.hcbi-page-shell {
    width: min(100%, 1600px);
    margin-inline: auto;
    overflow-x: clip;
}

    /* ─────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────── */
    .hcbi-page-shell .hero {
        position: relative;
        height: 563px;
        background-image: url('/img/community/hero-background.jpg');
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: center;
        padding-left: 80px;
        overflow: hidden;
    }

        .hcbi-page-shell .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.10) 70%, transparent 90% );
            z-index: 1;
        }

    .hcbi-page-shell .hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 55%;
    }

        .hcbi-page-shell .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.15;
            text-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 6px 18px rgba(0,0,0,0.45);
        }

        .hcbi-page-shell .hero-content p {
            margin-top: 20px;
            font-size: 1.5rem;
            opacity: 0.95;
            line-height: 1.3;
            text-shadow: 0 2px 8px rgba(0,0,0,0.55);
        }

@media (max-width: 1024px) {
    .hcbi-page-shell .hero {
        height: 420px;
        padding-left: 40px;
    }

    .hcbi-page-shell .hero-content h1 {
        font-size: 38px;
    }

    .hcbi-page-shell .hero-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .hcbi-page-shell .hero {
        height: auto;
        min-height: 300px;
        padding: 36px 18px;
        background-position: right center;
    }

        .hcbi-page-shell .hero::before {
            background: rgba(0,0,0,0.62);
        }

    .hcbi-page-shell .hero-content {
        max-width: 100%;
    }

        .hcbi-page-shell .hero-content h1 {
            font-size: 1.75rem;
        }

        .hcbi-page-shell .hero-content p {
            font-size: 0.95rem;
            margin-top: 12px;
        }
}
/* ─────────────────────────────────────────────────────
   UPCOMING CAREER ORIENTATION
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .orientation-section {
    padding: 64px 80px 100px;
    background: #fff;
}

    .hcbi-page-shell .orientation-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 4rem;
        font-weight: 700;
        color: var(--c-orange);
        text-align: center;
        margin-bottom: 48px;
    }

.hcbi-page-shell .orientation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
    justify-items: center;
}

/* ── Card wrapper – holds card + shadow pseudo-element ── */
.hcbi-page-shell .orientation-card {
    background: var(--c-orange);
    border-radius: 24px;
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 420px;
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it always square */
    position: relative;
    transition: transform 0.25s ease;
    /* Shadow below the card */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.55);
}
    /* Curved dark elliptical shadow BELOW the card */
    .hcbi-page-shell .orientation-card::after {
        content: "";
        position: absolute;
        bottom: -18px;
        left: 10%;
        right: 10%;
        height: 28px;
        background: rgba(0, 0, 0, 0.30);
        border-radius: 50%;
        filter: blur(10px);
        z-index: -1;
    }

    .hcbi-page-shell .orientation-card:hover {
        transform: translateY(-5px);
    }

        .hcbi-page-shell .orientation-card::after {
            bottom: -29px;
            background: rgba(0, 0, 0, 0.50);
        }

/* ── Date ── */
.hcbi-page-shell .card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* ── Copy ── */
.hcbi-page-shell .card-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
    font-weight: 560;
    margin-top:20px;
}

/* ── Register button ── */
.hcbi-page-shell .card-register-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    border: 2.5px solid var(--c-orange);
    padding: 16px 22px 26px; /* extra bottom padding for the underline space */
    color: var(--c-orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    transition: background 0.2s, transform 0.2s;
}

    /* Orange underline inside the button */
    .hcbi-page-shell .card-register-btn::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 10px;
        left: 22px;
        right: 22px;
        height: 2px;
        background: var(--c-orange);
        border-radius: 2px;
    }

    .hcbi-page-shell .card-register-btn:hover {
        transform: translateY(-1px);
    }

    .hcbi-page-shell .card-register-btn svg {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        color: var(--c-orange);
    }
.orientation-card {
    cursor: pointer;
}
/* ── Mobile ── */
/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
    .hcbi-page-shell .orientation-section {
        padding: 40px 18px 80px;
    }

        .hcbi-page-shell .orientation-section h2 {
            font-size: 1.75rem;
            margin-bottom: 32px;
        }

    /* Flex container – always centers items */
    .hcbi-page-shell .orientation-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px; /* spacing between cards */
    }

    /* Fixed small square card */
    .hcbi-page-shell .orientation-card {
        aspect-ratio: unset; /* disable any previous ratio */
        max-width: none;
        padding: 18px 12px 14px; /* compact inner spacing */
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Scale down the date */
    .hcbi-page-shell .card-date {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    /* Scale down the copy */
    .hcbi-page-shell .card-copy {
        font-size: 0.75rem;
        margin: 6px 0 10px;
    }

    /* Compact register button – underline removed to save space */
    .hcbi-page-shell .card-register-btn {
        margin-top: auto;
        padding: 8px 0 8px; /* less padding, no underline space */
        font-size: 12px;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
        gap: 6px;
    }

        /* Remove the orange underline inside the button */
        .hcbi-page-shell .card-register-btn::after {
            display: none;
        }

        .hcbi-page-shell .card-register-btn svg {
            width: 16px;
            height: 16px;
        }
}

/* ── Tablet ── */
@media (min-width: 641px) and (max-width: 1024px) {
    .hcbi-page-shell .orientation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .hcbi-page-shell .orientation-section {
        padding: 56px 40px 90px;
    }
}
/* ─────────────────────────────────────────────────────
   1:1 ADVISOR SESSION
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .advisor-session {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 600px;
}

.hcbi-page-shell .advisor-photo {
    position: relative;
    overflow: hidden;
    background: #fff;
    max-height: auto;
}

    .hcbi-page-shell .advisor-photo::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-65%, -50%);
        width: min(420px, 85%);
        aspect-ratio: 1;
        border-radius: 50%;
        border: 50px solid rgba(245, 166, 35, 0.55);
        z-index: 0;
    }

    .hcbi-page-shell .advisor-photo img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        display: block;
    }

.hcbi-page-shell .advisor-panel {
    background: var(--c-orange);
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

    .hcbi-page-shell .advisor-panel h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 38px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .hcbi-page-shell .advisor-panel p {
        font-size: 1.5rem;
        line-height: 1.1;
        color: rgba(255,255,255,0.95);
        margin-bottom: 32px;
        margin-top: -10px;
    }

@media (max-width: 900px) {
    .hcbi-page-shell .advisor-session {
        grid-template-columns: 1fr;
    }

    .hcbi-page-shell .advisor-photo {
        min-height: 360px;
    }

    .hcbi-page-shell .advisor-panel {
        padding: 40px 24px;
    }

        .hcbi-page-shell .advisor-panel h2 {
            font-size: 1.5rem;
        }

        .hcbi-page-shell .advisor-panel p {
            font-size: 0.95rem;
        }
}

/* ─────────────────────────────────────────────────────
   Reusable: white-outline pill button on solid orange bg
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .btn-outline-onorange {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 4px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

    .hcbi-page-shell .btn-outline-onorange:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-2px);
    }

@media (max-width: 640px) {
    .hcbi-page-shell .btn-outline-onorange {
        font-size: 1rem;
        padding: 6px 24px;
    }
}

/* ─────────────────────────────────────────────────────
   GUEST SPEAKERS
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .guest-speakers {
    padding: 80px 80px;
    background: #fff;
}
@media (min-width:901px) {
    .speaker--bottom1 {
        margin-top:-150px;
    }
    .speaker--bottom2 {
        margin-top: -150px;
    }
}
.hcbi-page-shell .guest-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
    row-gap: 56px;
    align-items: start;
}

.hcbi-page-shell .guest-speakers-intro {
    grid-column: 1 / 3;
    grid-row: 1;
}

    .hcbi-page-shell .guest-speakers-intro h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 34px;
        font-weight: 700;
        color: var(--c-orange);
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .hcbi-page-shell .guest-speakers-intro p {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.1;
        max-width: 480px;
    }

.hcbi-page-shell .speaker--top1 {
    grid-column: 3;
    grid-row: 1;
}

.hcbi-page-shell .speaker--top2 {
    grid-column: 4;
    grid-row: 1;
}

.hcbi-page-shell .speaker--bottom1 {
    grid-column: 1;
    grid-row: 2;
}

.hcbi-page-shell .speaker--bottom2 {
    grid-column: 2;
    grid-row: 2;
}

.hcbi-page-shell .speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hcbi-page-shell .speaker-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .hcbi-page-shell .speaker-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

/* AFTER */
.hcbi-page-shell .speaker-tag {
    width: 60%;
    margin-top: 0; /* ← avatar sits fully above the tag */
    padding: 16px 18px 14px;
    border-radius: 16px;
    z-index: 0;
}

.hcbi-page-shell .speaker-tag--orange {
    background: var(--c-orange);
}

.hcbi-page-shell .speaker-tag--coral {
    background: var(--c-coral);
}

.hcbi-page-shell .speaker-name {
    display: block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
}

.hcbi-page-shell .speaker-role {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .hcbi-page-shell .guest-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .hcbi-page-shell .guest-speakers-intro,
    .hcbi-page-shell .speaker--top1,
    .hcbi-page-shell .speaker--top2,
    .hcbi-page-shell .speaker--bottom1,
    .hcbi-page-shell .speaker--bottom2 {
        grid-column: auto;
        grid-row: auto;
    }

    .hcbi-page-shell .guest-speakers-intro {
        grid-column: 1 / 3;
    }

        .hcbi-page-shell .guest-speakers-intro h2 {
            font-size: 1.5rem;
        }

        .hcbi-page-shell .guest-speakers-intro p {
            font-size: 0.95rem;
        }

    .hcbi-page-shell .speaker-name {
        font-size: 1rem;
    }

    .hcbi-page-shell .speaker-role {
        font-size: 0.875rem;
    }

    .hcbi-page-shell .speaker-avatar {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 640px) {
    .hcbi-page-shell .guest-speakers {
        padding: 40px 20px;
    }

    .hcbi-page-shell .guest-speakers-grid {
        grid-template-columns: 1fr;
    }

    .hcbi-page-shell .guest-speakers-intro {
        grid-column: 1;
        text-align: center;
    }

        .hcbi-page-shell .guest-speakers-intro h2 {
            font-size: 1.4rem;
        }

        .hcbi-page-shell .guest-speakers-intro p {
            font-size: 0.9rem;
            max-width: none;
        }
}

/* ─────────────────────────────────────────────────────
   DEDICATED STUDENT SUPPORT
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .student-support-banner {
    background: var(--c-orange);
    padding: 90px 80px;
    text-align: center;
}

    .hcbi-page-shell .student-support-banner h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 46px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 26px;
    }

    .hcbi-page-shell .student-support-banner p {
        font-size: 1.5rem;
        line-height: 1.2;
        color: rgba(255,255,255,0.95);
        max-width: 1000px;
        margin: 0 auto 36px;
    }

        .hcbi-page-shell .student-support-banner p a {
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
        }

    .hcbi-page-shell .student-support-banner .btn-outline-onorange {
        margin: 0 auto;
    }

@media (max-width: 640px) {
    .hcbi-page-shell .student-support-banner {
        padding: 48px 24px;
    }

        .hcbi-page-shell .student-support-banner h2 {
            font-size: 1.5rem;
        }

        .hcbi-page-shell .student-support-banner p {
            font-size: 0.95rem;
        }
}

/* ─────────────────────────────────────────────────────
   CONTACT INFO + MAP
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .contact-location {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 480px;
}

.hcbi-page-shell .contact-info {
    position: relative;
    overflow: hidden;
    background: var(--c-orange);
    padding: 60px 64px;
    isolation: isolate;
}

    .hcbi-page-shell .contact-info::before {
        content: "";
        position: absolute;
        right: -30%;
        top: -10%;
        width: 90%;
        height: 140%;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        z-index: 0;
    }

.hcbi-page-shell .contact-item {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 34px;
}

    .hcbi-page-shell .contact-item:last-child {
        margin-bottom: 0;
    }

.hcbi-page-shell .contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #fff;
    margin-top: 2px;
}

.hcbi-page-shell .contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hcbi-page-shell .contact-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.hcbi-page-shell .phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}

.hcbi-page-shell .map-embed {
    position: relative;
}

    .hcbi-page-shell .map-embed iframe {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border: 0;
        display: block;
    }

@media (max-width: 900px) {
    .hcbi-page-shell .contact-location {
        grid-template-columns: 1fr;
    }

    .hcbi-page-shell .contact-info {
        padding: 40px 24px;
    }

    .hcbi-page-shell .contact-item h3 {
        font-size: 1rem;
    }

    .hcbi-page-shell .contact-item p {
        font-size: 0.9rem;
    }

    .hcbi-page-shell .contact-icon {
        width: 32px;
        height: 32px;
    }

    .hcbi-page-shell .map-embed iframe {
        min-height: 320px;
    }
}

/* ─────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────── */
.hcbi-page-shell .hcbi-section-cta {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/img/index/cta-banner-laptop.webp') center/cover no-repeat;
    background-position: center 90%;
}

    .hcbi-page-shell .hcbi-section-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
        z-index: 1;
    }

.hcbi-page-shell .hcbi-cta-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 40px 24px;
}

    .hcbi-page-shell .hcbi-cta-content h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.9rem;
        margin-bottom: 28px;
        text-transform: uppercase !important;
        line-height: 1.25;
    }

        .hcbi-page-shell .hcbi-cta-content h2 b {
            text-transform: uppercase !important;
        }

.hcbi-page-shell .hcbi-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hcbi-page-shell .hcbi-cta-btn-solid,
.hcbi-page-shell .hcbi-cta-btn-outline {
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    padding: 13px 30px;
    font-size: 1.6rem;
}

.hcbi-page-shell .hcbi-cta-btn-solid {
    background: #F5A623;
    color: #fff;
    border: none;
}

    .hcbi-page-shell .hcbi-cta-btn-solid:hover {
        background: #E8951A;
        transform: translateY(-2px);
    }

.hcbi-page-shell .hcbi-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 5px solid rgba(245, 166, 35, 1);
}

    .hcbi-page-shell .hcbi-cta-btn-outline:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        transform: translateY(-2px);
    }

@media (max-width: 700px) {
    .hcbi-page-shell .hcbi-cta-content h2 {
        font-size: 1.4rem;
    }

    .hcbi-page-shell .hcbi-cta-btn-solid,
    .hcbi-page-shell .hcbi-cta-btn-outline {
        font-size: 0.95rem;
        padding: 10px 22px;
        border-width: 2px;
    }
}


.orientation-empty {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    padding: 2rem 0;
}
/* =========================
   MODERN REGISTRATION MODAL
   (compact version)
========================= */
.hcbi-register-modal .modal-dialog {
    max-width: 460px; /* was 650px */
}

.hcbi-register-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.16);
    position: relative;
}

.modal-header-custom {
    background: linear-gradient(135deg, #f5a623 0%, #ff8c00 100%);
    padding: 28px 24px; /* reduced */
    text-align: center;
    color: #fff;
}

    .modal-header-custom h2 {
        font-size: 1.4rem; /* smaller */
        font-weight: 700;
        margin-bottom: 6px;
    }

    .modal-header-custom p {
        font-size: 0.85rem; /* smaller */
        opacity: .95;
        margin: 0;
    }

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px; /* smaller */
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    z-index: 10;
    cursor: pointer;
    transition: background .25s;
}

    .modal-close:hover {
        background: rgba(255,255,255,.35);
    }

.hcbi-register-modal .modal-body {
    padding: 24px 24px 12px; /* less padding */
}

.hcbi-register-modal .form-group {
    margin-bottom: 16px; /* closer spacing */
}

.hcbi-register-modal label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #222;
}

.hcbi-register-modal .form-control {
    height: 44px; /* was 55px */
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 0 14px;
    transition: .2s;
    box-shadow: none;
}

    .hcbi-register-modal .form-control:focus {
        border-color: #f5a623;
        box-shadow: 0 0 0 3px rgba(245,166,35,.15);
    }

.modal-footer-custom {
    padding: 8px 24px 24px;
}

.register-btn {
    width: 100%;
    height: 48px; /* was 58px */
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5a623 0%, #ff8c00 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .25s;
    cursor: pointer;
}

    .register-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(245,166,35,.3);
    }
@media (max-width: 768px) {
    .hcbi-register-modal .modal-dialog {
        max-width: 90%; /* let it breathe on very narrow screens */
        margin: 1rem auto; /* keep it centered */
    }

    .modal-header-custom {
        padding: 20px 18px;
    }

        .modal-header-custom h2 {
            font-size: 1.15rem;
        }

        .modal-header-custom p {
            font-size: 0.8rem;
        }

    .hcbi-register-modal .modal-body {
        padding: 18px 16px 6px;
    }

    .hcbi-register-modal .form-group {
        margin-bottom: 12px;
    }

    .hcbi-register-modal label {
        font-size: 0.8rem;
    }

    .hcbi-register-modal .form-control {
        height: 40px; /* even smaller inputs */
        font-size: 13px;
        padding: 0 12px;
    }

    .modal-footer-custom {
        padding: 6px 16px 18px;
    }

    .register-btn {
        height: 44px;
        font-size: 0.9rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}