/**
 * Public Pages Styles (News Archive & Single)
 * Mobile First Responsive
 */

:root {
    --hipmi-navy: #1a365d;
    --hipmi-navy-dark: #0f2442;
    --hipmi-yellow: #f6c000;
    --hipmi-cyan: #0891b2;
    --hipmi-gray: #64748b;
    --hipmi-light: #f8fafc;
}

/* =========================================
   NEWS PAGE - MODERN LAYOUT WITH SIDEBAR
   ========================================= */
.news-page {
    min-height: 100vh;
    background: #fff;
}

/* Page Header */
.news-page-header {
    background: linear-gradient(135deg, var(--hipmi-navy), var(--hipmi-navy-dark));
    padding: 2rem 0 2.5rem;
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.news-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.news-breadcrumb a:hover {
    color: #fff;
}

.news-breadcrumb i {
    font-size: 0.7rem;
}

.news-page-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-page-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
}

/* Main Content */
.news-page-content {
    padding: 2rem 0 4rem;
    background: var(--hipmi-light);
}

/* Layout Grid */
.news-layout {
    display: grid;
    gap: 2rem;
}

/* News Main Column */
.news-main {
    min-width: 0;
}

/* Featured Post */
.news-featured {
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.news-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.news-featured-content {
    padding: 1.5rem;
}

.news-featured-cat {
    display: inline-block;
    background: var(--hipmi-yellow);
    color: var(--hipmi-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hipmi-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-featured-excerpt {
    color: var(--hipmi-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-featured-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--hipmi-gray);
}

.news-featured-meta i {
    margin-right: 0.25rem;
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    height: 180px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hipmi-gray);
    font-size: 2.5rem;
}

.news-card-content {
    padding: 1.25rem;
}

.news-card-cat {
    display: inline-block;
    background: rgba(8, 145, 178, 0.1);
    color: var(--hipmi-cyan);
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hipmi-navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--hipmi-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    font-size: 0.8rem;
    color: var(--hipmi-gray);
}

.news-card-meta i {
    margin-right: 0.25rem;
}

/* News Pagination */
.news-pagination {
    margin-top: 2.5rem;
}

.news-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.news-pagination a {
    background: #fff;
    color: var(--hipmi-navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-pagination a:hover {
    background: var(--hipmi-navy);
    color: #fff;
}

.news-pagination span.current {
    background: var(--hipmi-navy);
    color: #fff;
}

/* News Empty State */
.news-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 1rem;
}

.news-empty i {
    font-size: 4rem;
    color: var(--hipmi-gray);
    opacity: 0.4;
}

.news-empty h3 {
    color: var(--hipmi-navy);
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}

.news-empty p {
    color: var(--hipmi-gray);
    margin-bottom: 1.5rem;
}

/* =========================================
   SIDEBAR
   ========================================= */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hipmi-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hipmi-yellow);
}

/* Search Widget */
.search-input-wrapper {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.search-input-wrapper button {
    background: var(--hipmi-navy);
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-input-wrapper button:hover {
    background: var(--hipmi-navy-dark);
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f1f5f9;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--hipmi-gray);
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--hipmi-navy);
}

.category-list .cat-name {
    font-size: 0.9rem;
}

.category-list .cat-count {
    background: var(--hipmi-light);
    color: var(--hipmi-gray);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.recent-post a:hover {
    opacity: 0.8;
}

.recent-post-image {
    width: 70px;
    height: 55px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--hipmi-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hipmi-gray);
    font-size: 1.25rem;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hipmi-navy);
    margin: 0 0 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--hipmi-gray);
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    background: var(--hipmi-light);
    color: var(--hipmi-gray);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-item:hover {
    background: var(--hipmi-navy);
    color: #fff;
}

/* CTA Widget */
.sidebar-cta {
    background: linear-gradient(135deg, var(--hipmi-navy), var(--hipmi-navy-dark));
    color: #fff;
}

.sidebar-cta .cta-content {
    text-align: center;
}

.sidebar-cta i {
    font-size: 2.5rem;
    color: var(--hipmi-yellow);
    margin-bottom: 0.75rem;
}

.sidebar-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.cta-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.cta-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-social-btn:hover {
    background: var(--hipmi-yellow);
    color: var(--hipmi-navy);
}

/* =========================================
   SINGLE POST
   ========================================= */
.single-news {
    background: #fff;
    min-height: 100vh;
}

/* Header */
.single-header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.single-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.95) 0%, rgba(26, 54, 93, 0.3) 100%);
}

.single-featured-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hipmi-navy), var(--hipmi-navy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 5rem;
}

.single-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.single-header-content {
    padding: 2rem 0;
}

.single-categories {
    margin-bottom: 0.75rem;
}

.single-categories a {
    display: inline-block;
    background: var(--hipmi-yellow);
    color: var(--hipmi-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-right: 0.5rem;
}

.single-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.single-meta i {
    margin-right: 0.25rem;
}

/* Content */
.single-content {
    padding: 2rem 0;
}

.single-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.single-body p {
    margin-bottom: 1.25rem;
}

.single-body h2,
.single-body h3,
.single-body h4 {
    color: var(--hipmi-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-body h2 {
    font-size: 1.5rem;
}

.single-body h3 {
    font-size: 1.25rem;
}

.single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.single-body blockquote {
    border-left: 4px solid var(--hipmi-yellow);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--hipmi-gray);
}

.single-body ul,
.single-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.single-body li {
    margin-bottom: 0.5rem;
}

/* Tags */
.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: 500;
    color: var(--hipmi-navy);
}

.single-tags a {
    display: inline-block;
    background: var(--hipmi-light);
    color: var(--hipmi-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.single-tags a:hover {
    background: var(--hipmi-navy);
    color: #fff;
}

/* Share */
.single-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--hipmi-light);
    border-radius: 0.5rem;
}

.share-label {
    font-weight: 500;
    color: var(--hipmi-navy);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0077b5; }
.share-copy { background: var(--hipmi-gray); }

/* Author Box */
.single-author-box {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--hipmi-light);
    border-radius: 1rem;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hipmi-navy);
    margin-bottom: 0.25rem;
}

.author-bio {
    font-size: 0.875rem;
    color: var(--hipmi-gray);
    margin: 0;
    line-height: 1.6;
}

/* Post Navigation */
.single-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-prev,
.nav-next {
    padding: 1rem;
    background: var(--hipmi-light);
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
    background: #eef2f6;
}

.nav-prev a,
.nav-next a {
    text-decoration: none;
    display: block;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--hipmi-gray);
    margin-bottom: 0.25rem;
}

.nav-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--hipmi-navy);
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

/* Related Posts */
.single-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hipmi-navy);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    gap: 1rem;
}

.related-item {
    background: var(--hipmi-light);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-3px);
}

.related-item a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
}

.related-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-image-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hipmi-gray);
    font-size: 1.5rem;
}

.related-content {
    padding: 0.75rem 0.75rem 0.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-date {
    font-size: 0.75rem;
    color: var(--hipmi-gray);
}

.related-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hipmi-navy);
    margin: 0.25rem 0 0;
    line-height: 1.3;
}

/* Comments Section */
.single-comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* =========================================
   COMMON ELEMENTS
   ========================================= */
.btn-hipmi-primary {
    display: inline-block;
    background: var(--hipmi-navy);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-hipmi-primary:hover {
    background: var(--hipmi-navy-dark);
    color: #fff;
}

/* =========================================
   TABLET (768px+)
   ========================================= */
@media (min-width: 768px) {
    .news-page-header {
        padding: 3rem 0 3.5rem;
    }

    .news-page-title {
        font-size: 2.5rem;
    }

    .news-page-content {
        padding: 3rem 0 5rem;
    }

    .news-layout {
        grid-template-columns: 1fr 320px;
    }

    .news-featured-image {
        height: 320px;
    }

    .news-featured-title {
        font-size: 1.75rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-header {
        min-height: 400px;
    }

    .single-title {
        font-size: 2rem;
    }

    .single-content {
        padding: 3rem 0;
    }

    .single-body {
        max-width: 800px;
        margin: 0 auto;
    }

    .single-tags,
    .single-share,
    .single-author-box,
    .single-nav,
    .single-related,
    .single-comments-section {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .single-nav {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-item a {
        flex-direction: column;
    }

    .related-image {
        width: 100%;
        height: 120px;
    }

    .related-content {
        padding: 1rem;
    }

    .author-avatar img {
        width: 80px;
        height: 80px;
    }
}

/* =========================================
   DESKTOP (992px+)
   ========================================= */
@media (min-width: 992px) {
    .news-layout {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }

    .news-featured-image {
        height: 380px;
    }

    .news-featured-title {
        font-size: 2rem;
    }

    .single-header {
        min-height: 450px;
    }

    .single-title {
        font-size: 2.5rem;
    }

    .single-header-content {
        padding: 3rem 0;
        max-width: 800px;
    }
}

/* =========================================
   MOBILE SIDEBAR (Sticky on Desktop)
   ========================================= */
@media (min-width: 768px) {
    .news-sidebar {
        position: sticky;
        top: 80px;
        align-self: start;
    }
}

/* Mobile: Sidebar below content */
@media (max-width: 767.98px) {
    .news-layout {
        display: flex;
        flex-direction: column;
    }

    .news-sidebar {
        order: 2;
        margin-top: 2rem;
    }
}

/* =========================================
   LOGIN PAGE - SINGLE COLUMN WITH BACKGROUND
   ========================================= */
.login-page-wrapper {
    min-height: 100vh;
    background-color: var(--hipmi-navy);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Form Styling */
.login-card .form-label {
    font-weight: 500;
    color: var(--hipmi-navy);
}

.login-card .input-group-text {
    background: var(--hipmi-light);
    border-color: #e2e8f0;
}

.login-card .form-control {
    border-color: #e2e8f0;
    padding: 0.75rem 1rem;
}

.login-card .form-control:focus {
    border-color: var(--hipmi-cyan);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.login-card .btn-member-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--hipmi-navy);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    transition: all 0.3s;
}

.login-card .btn-member-primary:hover {
    background: var(--hipmi-navy-dark);
    transform: translateY(-1px);
}

.login-card .form-check-label {
    color: var(--hipmi-navy);
}

.login-card .text-muted {
    color: #64748b !important;
}

.text-hipmi-navy {
    color: var(--hipmi-navy);
}

.text-hipmi-navy:hover {
    color: var(--hipmi-cyan);
}

/* Responsive */
@media (min-width: 768px) {
    .login-container {
        max-width: 450px;
    }

    .login-card {
        padding: 2.5rem;
    }

    .login-title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .login-overlay {
        padding: 3rem;
    }

    .login-title {
        font-size: 2.25rem;
    }
}
