﻿.custom-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 10px 20px;
    background: #ffffff;
    /* border: 1px solid #dcdcdc; */
    border-radius: 10px;
    width: fit-content;
}

    .custom-header img {
        height: 75px;
    }

    .custom-header .title-text {
        font-size: 22px;
        font-weight: bold;
        line-height: 32px;
        white-space: nowrap;
    }

.up-gov-logo img {
    width: 80px;
    height: auto;
    margin-right: -14px;
}

.profile-media img {
    width: 48px;
    height: auto;
    border-radius: 50%;
}


.bg-primary-light {
    background-color: rgb(255 255 255 / 18%);
}


.bg-info-light {
    background-color: rgb(255 255 255 / 36%);
}

.bg-success-light {
    background-color: rgb(255 255 255 / 29%);
}

.bg-warning-light {
    background-color: rgb(255 255 255 / 23%);
}


.bg-danger-light {
    background-color: rgb(255 255 255 / 39%);
}

.bg-secondary-light {
    background-color: #ffffff57;
}


.project-name h4 {
    font-size: 18px;
    margin-top: 8px;
    color: #ffffff;
}

.total-project .total {
    padding-bottom: -2px;
    /* line-height: 20px; */
    color: #000;
}

#statisticschart {
    height: 300px;
}

.connectedSortable {
    min-height: 100px;
}

.chart-box {
    height: 420px;
    display: flex;
    flex-direction: column;
}

    .chart-box canvas {
        flex: 1;
        height: 100% !important;
    }

#donutChart {
    max-height: 350px;
}

@media (min-width: 1400px) {
    .chart-box {
        height: 500px;
    }
}

@media (min-width: 1700px) {
    .chart-box {
        height: 550px;
    }
}

.border-green {
    /* border-bottom: 2px solid #00ac46 !important; */
}

.border-blue {
    /* border-bottom: 2px solid #6868ec !important; */
}

.border-l-blue {
    /* border-bottom: 2px solid #12cbe2 !important; */
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
}

.pagination {
    list-style: none;
    display: flex;
    padding: 0;
}

    .pagination li {
        margin: 0 4px;
        cursor: pointer;
        padding: 4px 12px;
        border: 1px solid #1b96d3;
        border-radius: 4px;
    }

        .pagination li.active {
            background-color: #1b96d3;
            color: white;
        }

        .pagination li.disabled {
            color: #aaa;
            cursor: not-allowed;
        }

.logo-wrapper a img {
    width: 70px;
    height: auto;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(218 234 243 / 30%);
}



.table-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.left-box,
.right-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.entries-select {
    padding: 6px 30px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    outline: none;
    font-size: 14px;
}

.search-input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    width: 200px;
}


#myTable .label {
    border-radius: 2px;
    color: #848484;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    text-transform: capitalize;
}



.action-col {
    position: relative;
}

.action-menu-wrapper {
    position: relative;
    display: inline-block;
}

.action-icon {
    cursor: pointer;
    font-size: 18px;
    padding: 6px;
}

/* Dropdown */
.action-dropdown {
    position: absolute;
    top: 26px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 160px;
    display: none;
    z-index: 999;
}

    .action-dropdown li a {
        display: block;
        padding: 4px 12px;
        font-size: 14px;
        text-decoration: none;
        color: #333;
    }

        .action-dropdown li a:hover {
            background: #f5f5f5;
        }



.logCheck {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

    .logCheck input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .logCheck .checkmark {
        width: 18px;
        height: 18px;
        background-color: #e6e6e6;
        border-radius: 4px;
        display: inline-block;
        transition: 0.3s;
        border: 1px solid #ccc;
    }

    /* When checked */
    .logCheck input:checked + .checkmark {
        background-color: #28a745;
        border-color: #28a745;
    }

    /* Tick mark */
    .logCheck .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .logCheck input:checked + .checkmark:after {
        display: block;
    }

    .logCheck .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }




.custom-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Popup Box */
.custom-popup-box {
    width: 90%;
    max-width: 850px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    animation: popupFade 0.25s ease;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.custom-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .custom-popup-header h4 {
        font-size: 20px;
        font-weight: 600;
    }

.custom-close-btn {
    background: none;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

/* Subtitle */
.custom-popup-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Buttons */
.custom-popup-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .custom-popup-footer .apply-btn {
        background: #F56828;
        color: #fff;
        padding: 10px 25px;
        border-radius: 6px;
        border: none;
    }

    .custom-popup-footer .clear-btn {
        background: #343A40;
        color: #fff;
        padding: 10px 25px;
        border-radius: 6px;
        border: none;
    }



/*---------------------------------------login-------------------------------*/
.top-logo-head {
    display: flex;
    justify-content: flex-start;
    position: relative;
    align-items: center;
    gap: 20px;
}

    .top-logo-head .gov-title {
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 0px;
    }

    .top-logo-head .sub-title {
        font-size: 15px;
        margin-top: 5px;
        color: #555;
        margin-bottom: 0px;
    }

.login-section {
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-section {
    background-attachment: fixed;
    background-image: linear-gradient(#00000000, #0009), url(../images/about/login-bg-3.png) !important;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-box {
    width: 70%;
    height: auto;
    background: #fff;
    margin: 0px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    max-width: 900px;
}

/* === LEFT SECTION === */
.left-section {
    background-image: url('../images/about/loginbg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    position: relative;
    height: 610px;
    width: 438px;
}

.tank-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* maintains aspect ratio & fills the box */
    object-position: center; /* focuses on center */
    display: block;
}

.powered {
    position: absolute;
    bottom: 15px;
    left: 30px;
    font-size: 13px;
    color: #444;
}

/* === RIGHT SECTION === */
.gov-title {
    font-weight: bold;
}

    .gov-title span {
        color: #ff7a2c;
    }

.sub-title {
    font-size: 15px;
    margin-top: 5px;
    color: #555;
}

/* === TABS === */
.tabs {
    width: 300px;
    background: #eeeeee;
}

.tab-btn {
    width: 50%;
    padding: 10px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

    .tab-btn.active {
        background: #fff;
        border-bottom: 3px solid #ff6b2d;
    }

/* === FORM AREA === */
.login-box .login-box {
    width: 80%;
}

.login-box .custom-label {
    font-weight: bold;
    font-size: 14px;
}

.login-box .custom-input {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #cdd1d5;
    padding-left: 12px;
    font-size: 14px;
}

    .login-box .custom-input:focus {
        border-color: #ff7a2c;
        box-shadow: 0 0 4px rgba(255, 122, 44, 0.5);
    }

/* === CAPTCHA BOX === */
.captcha-placeholder {
    background: #f5f5f5;
    border: 1px solid #cccccc;
    padding: 12px;
    width: 200px;
    border-radius: 5px;
    font-size: 13px;
    color: #444;
}

/* === FORGOT LINK === */
.forgot-link {
    margin-top: 15px;
    display: inline-block;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

/* === BUTTONS === */
.btn-row {
    display: flex;
    gap: 15px;
}

.btn-orange {
    background: #ff7a2c;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

    .btn-orange:hover {
        background: #2d2d2d;
        color: white;
    }

.btn-darkgray {
    background: #2d2d2d;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

    .btn-darkgray:hover {
        background: #ff7a2c;
        color: white;
    }
/* === CONTACT TEXT === */
.contact {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {

    .container-box {
        height: auto;
        width: 95%;
    }

    .login-box {
        width: 100%;
    }

    .tabs {
        width: 100%;
    }
}




.top-logos {
    margin-top: -10px;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.top-logo-img {
    height: 55px;
    object-fit: contain;
}

.logo-box {
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: center;
    padding-right: 60px;
    margin: 0 auto;
}

.border-end {
    border-right: 1px solid #ddd !important;
}

.right-section {
    padding: 20px 0px 20px 30px;
    border-left: 1px solid #ddd;
    /* margin-left: 30px; */
}

.login-box {
    width: 100%;
    max-width: 400px;
}


.login-custom-header {
    position: absolute;
    top: 0px;
    /* left: 20px; */
    /* right: 20px; */
    display: flex;
    align-items: center;
    gap: 5px;
    /* background: rgba(255, 255, 255, 0.85); */ /* slight white background */
    padding: 20px 15px;
    border-radius: 10px;
    width: 100%;
    flex-wrap: wrap;
}


    .login-custom-header img {
        height: 55px;
        object-fit: contain;
    }

    .login-custom-header .title-text {
        font-size: 17px;
        font-weight: 700;
        line-height: 22px;
        color: #000;
        text-align: center;
        flex-grow: 1;
    }


.logo-icon-wrapper a img {
    width: 50px;
    height: auto;
}


.element {
    background-color: #fffefa;
    background-image: repeating-linear-gradient(45deg, #cccccc00, #cccccc38 1px, transparent 1px, transparent 5px), repeating-linear-gradient(-45deg, #cccccc00, #cccccc45 1px, transparent 1px, transparent 5px);
}



@media (max-width: 767px) {
    .wizard-footer {
        width: 200px;
    }

    .size-column {
        padding-top: 20px;
    }

    .right-section {
        padding: 20px 20px 20px 20px;
    }
}


.submenu-content {
    display: none;
}

    .submenu-content.open {
        display: block !important;
    }

.submenu-title.open .sub-arrow i {
    transform: rotate(90deg);
}



.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    gap: 20px;
}

.form-group {
    flex: 1 1 45%;
    min-width: 250px; /* margin-right: 20px; */
    margin-bottom: 10px;
}

    .form-group.full-width {
        flex: 1 1 100%;
        margin-right: 0;
    }


.btn-custom-black {
    background-color: #333; /* dark gray */
    color: #fff; /* white text */
    border: none;
}

    .btn-custom-black:hover {
        background-color: #222;
    }




.radio-group {
    margin-bottom: 20px;
    font-weight: 600;
}

    .radio-group label {
        font-weight: 600;
        margin-right: 20px;
        cursor: pointer;
    }

    .radio-group input[type="radio"] {
        margin-right: 8px;
        cursor: pointer;
    }

.upload-btn {
    background: #222;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

    .upload-btn:hover {
        background: #444;
    }

.download-links {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 30px;
    font-size: 14px;
}

    .download-links a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding-bottom: 11px;
    }

        .download-links a:hover {
            text-decoration: underline;
        }

.instruction {
    font-size: 12px;
    color: #555;
    max-width: 500px;
    line-height: 1.4;
}

    .instruction strong {
        display: block;
        margin-bottom: 6px;
    }

.btn-back {
    background: #222;
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

    .btn-back:hover {
        background: #444;
    }




.nav-sub-childmenu {
    padding-left: 15px;
}

/* Second level submenu */
.nav-sub-childmenu-level2 {
    padding-left: 30px; /* indent more if needed */
    border-left: 2px dashed var(--sidebar-border-color);
}



.insta-embed-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

    .insta-embed-card img {
        width: 70px;
        border-radius: 50%;
        margin-bottom: 10px;
    }


.bg-card-blue {
    background: linear-gradient(to right, #12355B, #4277af) !important;
}

.bg-card-orange {
    background: linear-gradient(135deg, #C8820F, #eab45b);
}

.bg-card-green {
    background: linear-gradient(to right, #1B5E20, #67c76b) !important;
}

.bg-card-purple {
    background: linear-gradient(135deg, #4A235A, #8d52a5);
}

.bg-card-pink {
    background: linear-gradient(135deg, #7B1E28, #c74e5c);
}

.bg-card-teal {
    background: linear-gradient(135deg, #136a6b, #40b7c0);
}


.project-counter h2 {
    color: #fff;
    margin-top: 4px;
}


.small-widget {
    position: relative;
    border-radius: 18px;
    padding: 6px;
    color: #fff;
    overflow: hidden;
}

    .small-widget:before {
        background: #ffffff14;
        bottom: -16px;
        right: -30px;
        z-index: 1;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        content: "";
        width: 160px;
        height: 160px;
        position: absolute;
    }

.left-corner {
    display: flex;
    align-items: center;
    gap: 14px;
}




.mini-chart {
    width: 90px;
    height: 46px;
    /* margin-left: 10px; */
}


.bg-blue {
    background: linear-gradient(to right, #FFFFFF, #dfe5f4);
}

.bg-green {
    background: linear-gradient(to right, #FFFFFF, #dff2ed);
}

.bg-orange {
    background: linear-gradient(to right, #FFFFFF, #f7eee3);
}

.bg-purple {
    background: linear-gradient(to right, #FFFFFF, #efe8ff);
}

.bg-pink {
    background: linear-gradient(to right, #FFFFFF, #fceafa);
}

.bg-teal {
    background: linear-gradient(to right, #FFFFFF, #e6f4f9);
}

.up {
    color: #000000;
}

.down {
    color: #000000;
}

/* ==== ICON BACKGROUND COLORS ==== */
.icon-blue {
    background: #487fff;
    color: #ffffff;
}

.icon-green {
    background: #45b369;
    color: #ffffff;
}

.icon-orange {
    background: #f4941e;
    color: #ffffff;
}

.icon-purple {
    background: #8252e9;
    color: #ffffff;
}

.icon-pink {
    background: #de3ace;
    color: #ffffff;
}

.icon-teal {
    background: #00b8f2;
    color: #ffffff;
}

@media (min-width: 1200px) and (max-width: 1399.8px) {
    .stat-card {
        padding: 18px;
        min-height: 120px;
    }
    .stats-grid {
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr)) !important;

}
    .stat-value {
    font-size: 30px !important;
    font-weight: 600 !important;
}
}



.bg-gradient-start-1 {
    background: linear-gradient(to right, #E6F9FF, #FEFFFF);
}

.bg-gradient-start-2 {
    background: linear-gradient(to right, #F7E9FF, #FFFEFD);
}

.bg-gradient-start-3 {
    background: linear-gradient(to right, #E6EBFF, #FFFFFF);
}

.bg-gradient-start-4 {
    background: linear-gradient(to right, #E8FFF5, #FFFFFF);
}

.bg-gradient-start-5 {
    background: linear-gradient(to right, #FFEEEE, #FFFCFC);
}




.sign-in-bg {
    background-image: url('../images/about/login-bg-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .sign-in-bg .main-container {
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        border-radius: 0.6rem;
        overflow: hidden;
    }

        .sign-in-bg .main-container .main-content-box {
            background-image: url('../images/about/login-box-bg.png');
            background-position: center;
            background-color: rgba(255, 255, 255, 1);
            background-size: cover;
            padding: calc(20px + 28 * (100vw - 300px) / 1620);
            border-radius: 0.6rem;
            overflow: hidden;
        }

        .sign-in-bg .main-container .signup-content span img {
            width: 200px;
            display: block;
            margin: auto;
        }

.form-content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
}

    .form-content-box h2 {
        margin-bottom: 0;
        font-size: calc(22px + 13 * (100vw - 300px) / 1620);
        white-space: nowrap;
    }

    .form-content-box p {
        color: rgb(255, 255, 255, 0.8);
        font-weight: 500;
        font-size: calc(12px + 4 * (100vw - 300px) / 1620);
    }

    .form-content-box .form-container {
        padding: 0 2rem;
    }

        .form-content-box .form-container .form-check-input, .form-content-box .form-container .form-control {
            background-color: rgba(255, 255, 255, 0.4);
            color: rgba(255, 255, 255, 1);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .form-content-box .form-container .app-divider-v p {
            font-size: 15px;
            background-color: #287c84;
        }

.image-content-box .signup-bg-img img {
    margin: auto;
    display: block;
}


@media (max-width: 767px) {
    .btn-row {
        flex-wrap: wrap;
    }
}



/*====================================================CUSTOM===============================================*/



/*---------------------------------------------------logo---------------------------------------------------*/
.sidebar-header {
    padding: 10px 20px 10px;
    background: linear-gradient(135deg, rgba(0,180,216,0.15) 0%, transparent 100%);
    border-bottom: 1px solid #e3e3e3;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0077b6fc, #00b4d8bf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    /* color: #000; */
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
}

    .logo-text .title {
        font-size: 18px;
        font-weight: 700;
        color: #393939;
        line-height: 1;
    }

    .logo-text .sub {
        font-size: 12px;
        color: #3a3a3a;
        margin-top: 3px;
    }

.dept-name {
    padding: 12px 20px;
    font-size: 10px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--card-border);
    line-height: 1.5;
}

/*---------------------------------------------------end----------------------------------------------------*/



/*----------------------------------------------dashboard---------------------------------------------------*/

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .section-head h2 {
        font-size: 22px;
        font-weight: 700;
    }


.action-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.custom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-locate {
    background: #6c757d;
    color: #fff;
}

    .btn-locate:hover {
        background: #5a6268;
        transform: translateY(-2px);
    }

.btn-book {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

    .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    }

.custom-btn i {
    font-size: 12px;
}




.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    /* background: var(--card); */
    /* border: 1px solid var(--card-border); */
    border-radius: 14px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.2s, border-color 0.2s;
}

    .stat-card:hover {
        transform: translateY(-2px);
        border-color: var(--accent);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 8px;
        width: 50px;
        height: 50px;
        background: rgb(255 255 255 / 36%);
        border-radius: 50%;
        line-height: 50px;
        transform: translate(0px, -50%);
        border: 2px solid #ffffff45;
    }

.stat-label {
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-value {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.stat-sub {
    font-size: 11px;
    color: #fff;
    margin-top: 6px;
    font-weight: 400;
}

.stat-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 18px;
    /* opacity: 0.4; */
    color: #ffffffb0;
    transform: translate(0px, -50%);
}

.stat-card.blue .stat-value {
    color: var(--accent);
}

.stat-card.green .stat-value {
    color: var(--teal);
}

.stat-card.orange .stat-value {
    color: var(--warn);
}

.stat-card.red .stat-value {
    color: var(--danger);
}







.topbar {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    /* padding: 0 28px; */
    height: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-title {
    font-family: 'Rajdhani',sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.fy-badge {
    background: #f1f3f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
}


.topbar-btn {
    background: #008ed5;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .topbar-btn:hover {
        background: #008ed5;
        transform: translateY(-2px);
    }


.icon-btn {
    padding: 9px 10px;
}


.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fc;
    padding: 6px 5px;
    border-radius: 25px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0077b6fc, #00b4d8bf);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}


@media (max-width: 768px) {
    .topbar-actions {
        justify-content: center;
    }
}







.dashboard-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    height: 100%;
    border: 1px solid #dddaf0;
}


.dashboard-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #1e293b;
}


.progress-item {
    display: grid;
    grid-template-columns: 140px 1fr 70px;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.progress-label {
    font-size: 13px;
    color: #3b4656;
    font-weight: 500;
}

.progress-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    transition: width 0.6s ease;
}

    .progress-bar-fill.danger {
        background: linear-gradient(90deg, #ef4444, #f97316);
    }

    .progress-bar-fill.success {
        background: linear-gradient(90deg, #10b981, #22d3ee);
    }

.progress-value {
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

.wqi-row {
    display: grid;
    grid-template-columns: 80px 100px 70px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wqi-range {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.wqi-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.excellent {
    background: #dcfce7;
    color: #16a34a;
}

.good {
    background: #e0f2fe;
    color: #0284c7;
}

.poor {
    background: #fef3c7;
    color: #d97706;
}

.very-poor {
    background: #ffe4e6;
    color: #ea580c;
}

.unfit {
    background: #fee2e2;
    color: #dc2626;
}

.wqi-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
}

.wqi-fill {
    height: 100%;
    border-radius: 20px;
}

.excellent-fill {
    background: #16a34a;
}

.good-fill {
    background: #0284c7;
}

.poor-fill {
    background: #d97706;
}

.very-poor-fill {
    background: #f97316;
}

.unfit-fill {
    background: #dc2626;
}

.avg-text {
    margin-top: 18px;
    font-size: 13px;
    color: #64748b;
}

    .avg-text span {
        font-weight: 600;
        color: #3b82f6;
    }



.ftk-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    transition: 0.3s ease;
    min-height: 350px;
    border: 1px solid #dddaf0;
}

    .ftk-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    }


.ftk-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    color: #1e293b;
}


.ftk-item {
    margin-bottom: 10px;
}


.ftk-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

    .ftk-head span {
        color: #475569;
        font-weight: 500;
    }

    .ftk-head strong {
        font-weight: 600;
        color: #0f172a;
    }


.ftk-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
}


.ftk-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 0.9s ease;
}

.primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.info {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.secondary {
    background: linear-gradient(90deg, #64748b, #94a3b8);
}

.success {
    background: linear-gradient(90deg, #10b981, #22d3ee);
}

.danger {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.warning {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}


.danger-text {
    color: #dc2626;
}

.success-text {
    color: #059669;
}

.warning-text {
    color: #d97706;
}


@media (max-width: 768px) {
    .ftk-card {
        padding: 16px;
    }
}




.workflow-card {
    border: none;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    border: 1px solid #dddaf0;
}


.workflow-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: #1e293b;
}


.workflow-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    text-align: center;
    transition: 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
}

.workflow-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


.workflow-text {
    font-size: 12px;
    font-weight: 500;
    color: #334155;
}


.workflow-arrow {
    font-size: 18px;
    color: #94a3b8;
}


@media (max-width: 992px) {
    .workflow-wrapper {
        justify-content: center;
    }

    .workflow-arrow {
        display: none;
    }
}

/*---------------------------------------------------end---------------------------------------------------*/


@media (min-width: 1200px) and (max-width: 1399.8px){
    .workflow-text {
    font-size: 11px;
}
    .workflow-card {
    padding: 22px 10px;
}
    .workflow-step {
    min-width: 75px;

}
    .workflow-wrapper {
    gap: 10px;
}
}



/*-----------------------------------------------------alert----------------------------------------------------*/

.custom-alert {
    background: linear-gradient(90deg, #e0f2fe, #f0f9ff);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    color: #0c4a6e;
    margin-bottom: 20px;
}


.custom-alert i {
    color: #0284c7;
    font-size: 15px;
}

.alert-text {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
}


.alert-link-custom {
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.alert-link-custom:hover {
    color: #0369a1;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .custom-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alert-link-custom {
        margin-top: 4px;
    }
}

/*------------------------------------------------------end-----------------------------------------------------*/


/*-----------------------------------------------------tabs-----------------------------------------------------*/

.custom-tabs {
    border-bottom: none;
    gap: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-around;
}

.custom-tabs .nav-link {
    border: none;
    background: #f1f5f9;
    border-radius: 14px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    min-width: 520px;
    text-align: center;
    border: 1px solid #c1dcf2;
}

.custom-tabs .nav-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}


.custom-tabs .nav-link.active {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}


.custom-tabs .nav-link i {
    font-size: 18px;
}


@media (max-width: 767px) {
    .custom-tabs {
        flex-direction: column;
        align-items: center;
    }

    .custom-tabs .nav-link {
        width: 100%;
        max-width: 350px;
    }
}
/*-----------------------------------------------------end------------------------------------------------------*/


/*-------------------------------------------------tabs all inner------------------------------------------------*/
.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 24px 0;
}

.rural-section {
    background: #ffffff;
    /* padding: 25px; */
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}


.rural-field {
    display: flex;
    flex-direction: column;
}

.rural-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.rural-field label span {
    color: #e53935;
    font-weight: 700;
}

.form-select {
    border: 1px solid #dcdcdc;
    font-size: 14px;
    height: 38px;
}

.form-control {
    border: 1px solid #dcdcdc;
    font-size: 14px;
    height: 38px;
}


.rural-field .form-select:hover {
    border-color: var(--accent);
}


.rural-field .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

@media (max-width: 767px) {

    .rural-section {
        padding: 18px;
    }

    .rural-field label {
        font-size: 13px;
    }

    .rural-field .form-select {
        height: 42px;
        font-size: 13px;
    }
}






.source-grid-wrapper {
    /* padding: 30px 0px 0px; */
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
}

.source-box {
    padding: 18px 8px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    /* border: 2px solid transparent; */
}

.source-box  span{
    font-weight:500;
}
.source-box i {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}


.source-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.box-1 {
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
}

.box-2 {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}

.box-3 {
    background: linear-gradient(90deg, #00b09b, #96c93d);
}

.box-4 {
    background: linear-gradient(90deg, #fc466b, #3f5efb);
}

.box-5 {
    background: linear-gradient(90deg, #f7971e, #ffd200);
}

.box-6 {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.box-7 {
    background: linear-gradient(90deg, #ff512f, #dd2476);
}

.box-8 {
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.box-9 {
    background: linear-gradient(90deg, #396afc, #2948ff);
}

.box-10 {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
}


@media (max-width: 1400px) {
    .source-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .source-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .source-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 20px;
}


.section-title i {
    font-size: 18px;
    color: #0ea5e9;
}


.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 16px;
    }
    .section-title i {
        font-size: 16px;
    }
}



.test-table-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.test-table th {
    font-weight: 600;
    font-size: 14px;
}

.test-table td {
    font-size: 14px;
}

.test-check {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.test-table tbody tr:hover {
    background-color: #f8fafc;
}






.selected-tests-card {
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.selected-tests-card .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #023e8a;
}

.cart-items {
    min-height: 40px;
    font-size: 14px;
    color: #6c757d;
}

.divider {
    margin: 20px 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.total-box small {
    font-size: 12px;
    color: #6c757d;
}

.total-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00b4d8;
    margin: 0;
}

.proceed-btn {
    padding: 10px 22px;
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    border: none;
    width: 200px;
}

@media (max-width: 768px) {
    .total-box h3 {
        font-size: 22px;
    }

    .selected-tests-card .card-body {
        padding: 16px;
    }
}




.search-parameter-card {
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 216, 0.25);
    background: rgba(0, 180, 216, 0.05);
    backdrop-filter: blur(6px);
}

.search-parameter-card .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #023e8a;
}

.card-subtext {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 18px;
}

.search-parameter-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.search-parameter-card .form-select {
    border-radius: 8px;
    padding: 8px 12px;
}

.find-labs-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 500;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    border: none;
}

.find-labs-btn:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.table td span{
    color: #051A1A;
    font-size: 13px;
    font-weight: 500;
}











.complaint-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.complaint-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.complaint-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}

.sample-id {
    font-weight: 600;
    color: #0d6efd;
}

.table thead th {
    font-size: 13px;
    font-weight: 600;
}

.table tbody td {
    font-size: 14px;
}










.feedback-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.feedback-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.feedback-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}


.rating-stars {
    display: flex;
    gap: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #adb5bd;
}

.rating-stars i {
    transition: 0.2s ease;
    color: #ffb329;
}

.rating-stars i.active,
.rating-stars i:hover,
.rating-stars i:hover ~ i {
    color: #ffc107;
}




.filter-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.filter-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.filter-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.filter-card .form-select {
    border-radius: 8px;
}

.filter-card .btn {
    border-radius: 8px;
    padding: 8px 12px;
}



.profile-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.profile-card .card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    color: #023e8a;
}

.profile-card .form-label {
    font-weight: 500;
    font-size: 14px;
}

.profile-card .form-control,
.profile-card .form-select {
    border-radius: 8px;
}








.dwsm-dashboard {
    margin-top: 15px;
}

.dwsm-card {
  background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    border: 1px solid #dddaf0;
}

.dwsm-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dwsm-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    font-weight: 500;
}

.dwsm-table th {
    font-size: 12px;
    color: #666;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.dwsm-table td {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.dwsm-wqi {
    font-weight: 600;
    background: transparent;
}

.dwsm-wqi.good { color: #0d6efd; }
.dwsm-wqi.warn { color: #e63946; }

.dwsm-pill {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 30px;
    font-weight: 500;
}
.dwsm-progress-head span{
    font-weight:500;
}
.dwsm-pill.safe {
    background: #e1f6eb;
    color: #28a745;
}

.dwsm-pill.contaminated {
    background: #fae3e0;
    color: #dc3545;
}

.dwsm-pill.pending {
    background: #f4e6d3;
    color: #f39c12;
}


.dwsm-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.dwsm-alert.danger {
    background: rgba(230,57,70,0.08);
    border: 1px solid rgba(230,57,70,0.25);
}

.dwsm-alert.success {
    background: rgba(6,214,160,0.07);
    border: 1px solid rgba(6,214,160,0.2);
}

.dwsm-alert-title {
    font-size: 14px;
    font-weight: 600;
}

.dwsm-alert-sub {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.dwsm-progress {
    margin-bottom: 14px;
}

.dwsm-progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.dwsm-progress-bar {
    height: 6px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.dwsm-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    border-radius: 10px;
}

.dwsm-progress-fill.warn {
    background: #e63946;
}

.warn-text {
    color: #e63946;
}

.dwsm-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: 12px;
    font-weight: 500;
}

.dwsm-btn:hover {
    background: #e7f2fc;
}


.dwsmd-header-info {
    font-size: 12px;
    color: var(--dwsmd-text-dim);
    font-weight: 500;
}

.dwsmd-district-name {
    color: var(--dwsmd-accent);
    font-weight: 600;
}

.dwsmd-separator {
    margin: 0 6px;
    color: var(--dwsmd-text-dim);
}


/*---------------------------------------------------login------------------------------------------------------*/

.jjm-login-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, #0077b6 0%, #00b4d8 70%, #90e0ef 100%);
    overflow: hidden;
}




.jjm-login-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.jjm-login-header h4 {
    font-weight: 600;
    color: #1e293b;
    margin-top: 15px;
    font-size: 24px;
    margin-bottom: 10px;
}

.jjm-login-header p {
    font-size: 14px;
    color: #5b6269;
    font-weight: 500;
    line-height: 20px;
}


.jjm-logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #ffffff;
    font-size: 40px;
}

.jjm-form-group {
    margin-bottom: 18px;
}

.jjm-form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #212529;
}

.jjm-input-group {
    position: relative;
}

.jjm-input-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9aa4b2;
    font-size: 14px;
}

.jjm-input-group .form-control {
    padding-left: 38px;
    height: 42px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d8d8d8;
}

.jjm-input-group .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.jjm-login-options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 18px;
}

.jjm-login-options a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}


.jjm-login-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.jjm-login-btn:hover {
    background: #084298;
}


.jjm-login-footer {
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
}


@media (max-width: 576px) {
    .jjm-login-card {
        padding: 25px;
    }
}
/*----------------------------------------------------end---------------------------------------------------------*/
