html, body {
    height: 100%;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}
.sacco-navbar {
    background: #0b1f3a !important;
}

/* Active Menu */
.navbar-dark .navbar-nav .nav-link.active {
    background: #198754;
    border-radius: 6px;
    color: #fff !important;
}

/* Menu Hover */
.sacco-navbar .nav-link:hover {
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}

/* Loader overlay */
/*.loader-body {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}*/

/* Spinner animation */
/*.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 45%;
    left: 40%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}*/
/*home load begin*/
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
    backdrop-filter: none !important;
}

.loader-container {
    text-align: center;
    position: relative;
}

.loader-circle {
    width: 90px;
    height: 90px;
    border: 4px solid rgba(40,167,69,.15);
    border-top: 4px solid #28a745;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loader-circle-2 {
    position: absolute;
    inset: -10px;
    width: 110px;
    height: 110px;
    border-top-color: #20c997;
    animation-duration: 2s;
    animation-direction: reverse;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #28a745;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.preloader h5 {
    letter-spacing: 1px;
    margin-top: 30px;
}

.preloader small {
    display: block;
    margin-top: 5px;
}
/*home load end*/
/*begin top direction*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    transition: all .3s ease;
}

    #myBtn:hover {
        transform: translateY(-3px);
    }
.content-wrapper {
    min-height: calc(100vh - 120px);
    background: #f4f6f9;
}
/*aside bar begin*/
/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
    z-index: 10;
}

/* Sidebar Card */
.sidebar-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .sidebar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    /* Header */
    .sidebar-card .card-header {
        border: 0;
        padding: 18px;
        background: linear-gradient(135deg,#0f172a,#1e3a8a);
    }

        .sidebar-card .card-header h6 {
            font-size: 1rem;
            letter-spacing: .5px;
        }

    /* Body */
    .sidebar-card .card-body {
        background: #ffffff;
    }

/* Date Sections */
.date-box {
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

    .date-box:hover {
        background: #eff6ff;
        border-color: #3b82f6;
    }

/* Time Cards */
.time-card {
    background: linear-gradient(135deg,#ffffff,#f8fafc);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

    .time-card:hover {
        transform: translateY(-3px);
        border-color: #3b82f6;
        box-shadow: 0 8px 20px rgba(59,130,246,.15);
    }

/* Clock */
#liveClock,
#etClock {
    font-size: 1rem; /* 16px */
    font-weight: 700;
    white-space: nowrap;
}
/* Divider */
.sidebar-card hr {
    opacity: .1;
}

/* Responsive */
@media (max-width:768px) {
    .sticky-sidebar {
        position: static;
        margin-top: 20px;
    }
}
/* ===========================
   NEWS SIDEBAR
=========================== */

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #edf2f7;
    transition: all .35s ease;
}

    .news-item:hover {
        transform: translateY(-4px);
        background: #f8fbff;
        border-color: #0d6efd;
        box-shadow: 0 10px 25px rgba(13,110,253,.12);
    }

.news-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#20c997);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 8px 18px rgba(13,110,253,.25);
}

.news-item h6 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #1f2937;
}

.news-item p {
    color: #6b7280;
    font-size: .9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-meta {
    font-size: .82rem;
    color: #6c757d;
}

    .news-meta div {
        margin-bottom: 4px;
    }

    .news-meta i {
        width: 18px;
    }

.news-item:last-child {
    margin-bottom: 0;
}

/* Read More Button */

.news-btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: .3s;
}

    .news-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(13,110,253,.2);
    }

/* Empty State */

.news-empty {
    text-align: center;
    padding: 40px 20px;
}

    .news-empty i {
        font-size: 55px;
        color: #cbd5e1;
        margin-bottom: 15px;
    }

/* Mobile */

@media(max-width:768px) {

    .news-item {
        padding: 12px;
    }

    .news-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
}

.stat-item {
    padding: 12px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: .3s;
}

    .stat-item:hover {
        background: #eef7ff;
    }

.quick-link {
    transition: .3s;
}

    .quick-link:hover {
        padding-left: 20px;
        background: #f8f9fa;
    }

.loan-card .table th {
    font-size: 13px;
}

.loan-card .table td {
    font-size: 12px;
}

.event-item {
    padding: 10px;
    border-left: 4px solid #ffc107;
    background: #fffaf0;
    border-radius: 8px;
}

.support-card {
    background: linear-gradient(135deg,#198754,#20c997);
    color: white;
}

.address-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .address-item:last-child {
        border-bottom: none;
    }
.documents-box {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    margin-bottom: 20px;
}


/* Header */

.documents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: linear-gradient( 135deg, #198754, #20c997 );
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}


    .documents-header:hover {
        background: linear-gradient( 135deg, #157347, #0f9d78 );
        color: white;
    }


.doc-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}



.arrow {
    transition: .3s;
}


.documents-header.active .arrow {
    transform: rotate(180deg);
}



/* Body */

.documents-body {
    padding: 18px;
    background: #f8fafb;
}



.documents-title {
    color: #198754;
    font-weight: bold;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
}



    .documents-title i {
        margin-right: 8px;
    }

/* Documents Header Like Member Rules */

.documents-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: .3s;
}


    .documents-header:hover {
        background: #e8f5e9;
        color: #198754;
    }


/* Icon */

.doc-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: #198754;
    border-radius: 50%;
}


    .doc-icon i {
        font-size: 18px;
    }



/* Text */

.documents-header span {
    margin-left: 12px;
    font-size: 15px;
}


/* Arrow */

.arrow {
    transition: .3s;
    color: #6c757d;
}

/* PDF ITEMS */

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.pdf-item {
    background: white;
    padding: 13px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
    transition: .3s;
}



    .pdf-item i:first-child {
        color: #dc3545;
        font-size: 22px;
        margin-right: 12px;
    }



    .pdf-item span {
        flex: 1;
        font-size: 14px;
    }



    .pdf-item .download {
        color: #198754;
        opacity: 0;
        transition: .3s;
    }



    .pdf-item:hover {
        transform: translateX(6px);
        background: #f1fff8;
    }



        .pdf-item:hover .download {
            opacity: 1;
        }
/*end aside bar*/
/*begin index*/
.hero-slider {
    border-radius: 15px;
    overflow: hidden;
}


.carousel-item {
    position: relative;
}


    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0,0,0,.70), rgba(0,0,0,.35) );
        z-index: 1;
    }



    .carousel-item img {
        height: 550px;
        object-fit: cover;
    }



.carousel-caption {
    bottom: 22%;
    z-index: 5;
}



    .carousel-caption h5 {
        color: #00ff99;
        font-weight: 700;
        letter-spacing: 3px;
        text-shadow: 0 3px 10px #000;
    }



    .carousel-caption h1 {
        font-weight: 900;
        text-shadow: 0 4px 15px #000;
    }



    .carousel-caption p {
        text-shadow: 0 3px 10px #000;
    }



    .carousel-caption .btn {
        border-radius: 30px;
        padding: 12px 35px;
        font-weight: bold;
    }

.statistics-section {
    background: #f8f9fa;
}


.section-title {
    color: #1b263b;
}


/* Statistics Card */
.statistics-section {
    background: #f8fafc;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #12395b;
}

.section-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.stats-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

    .stats-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
}

.counter {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.stats-card small {
    display: block;
    color: #888;
    margin-bottom: 15px;
}

.stats-card p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #555;
}

/* Left Border */

.card-green {
    border-top: 5px solid #28a745;
}

.card-blue {
    border-top: 5px solid #0d6efd;
}

.card-orange {
    border-top: 5px solid #fd7e14;
}

.card-red {
    border-top: 5px solid #dc3545;
}

/* Icon Colors */

.card-green .icon-box {
    background: linear-gradient(135deg,#28a745,#6fdc8c);
}

.card-blue .icon-box {
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
}

.card-orange .icon-box {
    background: linear-gradient(135deg,#fd7e14,#ffb347);
}

.card-red .icon-box {
    background: linear-gradient(135deg,#dc3545,#ff7d8d);
}

/* Decorative Circle */

.stats-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(13,110,253,.04);
    top: -70px;
    right: -70px;
}

.stats-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(13,110,253,.06);
    bottom: -45px;
    left: -45px;
}

@media(max-width:768px) {

    .counter {
        font-size: 28px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


/* Colors */
.card-green {
    background: linear-gradient(135deg,#11998e,#38ef7d);
}


.card-blue {
    background: linear-gradient(135deg,#396afc,#2948ff);
}


.card-orange {
    background: linear-gradient(135deg,#f7971e,#ffd200);
}


.card-red {
    background: linear-gradient(135deg,#cb2d3e,#ef473a);
}


/* Mobile */
@media(max-width:768px) {

    .stats-card {
        padding: 30px 15px;
    }

        .stats-card h2 {
            font-size: 30px;
        }
}


.service-card {
    border-radius: 18px;
    transition: .4s;
}



    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,.2);
    }



.small-box {
    border-radius: 15px;
    transition: .3s;
}


    .small-box:hover {
        transform: translateY(-8px);
    }
@media (max-width:768px) {
    .carousel-item img {
        height: 350px;
    }


    .carousel-caption h1 {
        font-size: 28px;
    }


    .carousel-caption p {
        font-size: 15px;
    }
}
/*end index*/
/*validation error border begin*/
input.input-validation-error {
    border: 2px solid red;
    background-color: #ffdddd;
}

select.input-validation-error {
    border: 2px solid red;
    background-color: #ffdddd;
}

textarea.input-validation-error {
    border: 2px solid red;
    background-color: #ffdddd;
}

.mandatory_asterisk {
    color: red;
    font-weight: bold;
}
/*validation error border end*/
/*begin footer disgn*/
.sacco-footer {
    background: #0b1f3a;
    color: white;
    border-top: 3px solid #198754;
}

.footer-text {
    text-align: center;
    font-size: 14px;
}

    .footer-text a {
        color: #10b981;
        text-decoration: none;
    }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-left: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: white;
}

    .social-links a:hover {
        background: #198754;
    }
/* end footer*/
/*begin privecy*/
.privacy-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.privacy-header {
    background: linear-gradient(135deg,#198754,#0d6efd);
    color: white;
    text-align: center;
    padding: 40px;
}
.icon-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: white;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}
.privacy-body {
    padding: 35px;
}
section {
    margin-bottom: 35px;
}
 section h4 {
        color: #198754;
        font-weight: bold;
        border-left: 5px solid #198754;
        padding-left: 12px;
    }
    .security-list {
    list-style: none;
    padding: 0;
}
 .security-list li {
        background: #f8f9fa;
        padding: 12px;
        margin: 8px 0;
        border-radius: 10px;
    }
    .security-list i {
        color: #198754;
        width: 25px;
    }
    .info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
}
.info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px #ddd;
    }
.info-box i {
        font-size: 30px;
        color: #198754;
    }
.contact-box {
    background: #198754;
    color: white;
    padding: 25px;
    border-radius: 15px;
}
 .contact-box i {
        width: 25px;
    }

.security-feature {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: .3s;
}
.security-feature:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }
    .feature-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #198754;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 15px;
}
.security-feature h5 {
    color: #198754;
    font-weight: bold;
}
.security-feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}
/*end privecy*/
/*begin services*/
.service-card {
    transition: all .3s ease;
    border-radius: 15px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15) !important;
    }

.service-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h5 {
    color: #2c3e50;
}
/*end services*/
/* contact us begin*/
.Contactcontainer {
    width: 85%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

    .Contactcontainer .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .Contactcontainer .content .left-side {
            width: 25%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            position: relative;
        }

.content .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}

.content .left-side .details {
    margin: 14px;
    text-align: center;
}

    .content .left-side .details i {
        font-size: 30px;
        color: #3e2093;
        margin-bottom: 10px;
    }

    .content .left-side .details .topic {
        font-size: 18px;
        font-weight: 500;
    }

    .content .left-side .details .text-one,
    .content .left-side .details .text-two {
        font-size: 14px;
        color: #afafb6;
    }

.Contactcontainer .content .right-side {
    width: 75%;
    margin-left: 75px;
}

.content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
}

.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

    .right-side .input-box input,
    .right-side .input-box textarea {
        height: 100%;
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        background: #F0F1F8;
        border-radius: 6px;
        padding: 0 15px;
        resize: none;
    }

.right-side .message-box {
    min-height: 110px;
}

.right-side .input-box textarea {
    padding-top: 6px;
}

.right-side .button {
    display: inline-block;
    margin-top: 12px;
}

    .right-side .button input[type="button"] {
        color: #fff;
        font-size: 18px;
        outline: none;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        background: #3e2093;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.button input[type="button"]:hover {
    background: #5029bc;
}

@media (max-width: 950px) {
    .Contactcontainer {
        width: 90%;
        padding: 30px 40px 40px 35px;
    }

        .Contactcontainer .content .right-side {
            width: 75%;
            margin-left: 55px;
        }
}

@media (max-width: 820px) {
    .Contactcontainer {
        margin: 40px 0;
        height: 100%;
    }

        .Contactcontainer .content {
            flex-direction: column-reverse;
        }

            .Contactcontainer .content .left-side {
                width: 100%;
                flex-direction: row;
                margin-top: 40px;
                justify-content: center;
                flex-wrap: wrap;
            }

                .Contactcontainer .content .left-side::before {
                    display: none;
                }

            .Contactcontainer .content .right-side {
                width: 100%;
                margin-left: 0;
            }
}
/*  end contact us*/
/*start next and preveious page show */
.step-tabs {
    display: flex;
    border-bottom: 2px solid #e6e6e6;
    margin-bottom: 20px;
    position: relative;
}

    .step-tabs::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #dee2e6;
    }

    .step-tabs .nav-item {
        flex: 1;
        text-align: center;
    }

    .step-tabs .nav-link {
        border: none;
        position: relative;
        color: #777;
        font-weight: 500;
        padding: 15px 10px;
    }

        .step-tabs .nav-link::before {
            content: attr(data-step);
            width: 32px;
            height: 32px;
            line-height: 32px;
            display: inline-block;
            border-radius: 50%;
            background: #dee2e6;
            color: #555;
            margin-right: 8px;
            font-weight: 600;
        }

        .step-tabs .nav-link.active {
            color: #0d6efd;
            font-weight: 600;
        }

            .step-tabs .nav-link.active::before {
                background: #0d6efd;
                color: #fff;
            }

        .step-tabs .nav-link:hover {
            background: #f8f9fa;
        }

.form-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.form-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}
/*end next and preveious page show */


/* begin has penality */
/* SWITCH CONTAINER */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    margin-top: 8px;
    height: 21px;
}
/* HIDE DEFAULT CHECKBOX */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
/* SLIDER */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ced4da;
    transition: .4s;
}
/* CIRCLE */
    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
    }
/* ACTIVE */
input:checked + .slider {
    background-color: #0d6efd;
}
/* MOVE CIRCLE */
    input:checked + .slider:before {
        transform: translateX(21px);
    }
    /* ROUND STYLE */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/* begin has penality */
/*begin login*/


/* ===========================
   LOGIN PAGE
=========================== */

.login-page-custom{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
    background:
        linear-gradient(rgba(7,25,52,.78),rgba(7,25,52,.78)),
        url('/images/login-bg.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Card */

.login-card{

    width:440px;
    max-width:100%;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:45px;
    box-shadow: 0 15px 40px rgba(0,0,0,.20);
 border:1px solid rgba(255,255,255,.3);
 animation:fadeUp .6s ease;
}
@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* Logo */
.login-logo{

    width:95px;
    height:95px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:0 5px 18px rgba(0,0,0,.18);
}

/* Title */

.login-card h3{

    font-weight:700;
    color:#0d6efd;
}

.login-card p{

    font-size:15px;
}

/* Floating Input */
.form-floating>.form-control{
      height:48px;
    border-radius:14px;
 border:1px solid #d6dce5;
 padding-left:18px;
}
.form-floating>.form-control:focus{

  border-color:#198754;
 box-shadow: 0 0 0 .2rem rgba(25,135,84,.15);
}
/* Floating label */
.form-floating>label{

    color:#6c757d;
}
/* Password Eye */
.toggle-password{
 position:absolute;
 top:44px;
 right:18px;
 z-index:5;
 cursor:pointer;
  color:#6c757d;
  transition:.3s;
}
.toggle-password:hover{

 color:#198754;
}
/* Login Button */
.btn-login{
 height:55px;
 border:none;
border-radius:14px;
color:#fff;
  font-size:17px;
 font-weight:600;
 letter-spacing:.4px;
 background:linear-gradient(135deg,#0d6efd,#198754);
 transition:.35s;
}
.btn-login:hover{
 transform:translateY(-3px);
 color:#fff;
 box-shadow:
     0 12px 28px rgba(13,110,253,.30);
}
/* Remember */
.form-check-input:checked{

    background:#198754;
    border-color:#198754;
}
/* Links */
a{

    color:#0d6efd;
    transition:.3s;
    text-decoration:none;
}
a:hover{

    color:#198754;
}
/* Validation */
.text-danger{

    font-size:13px;
}
/* Mobile */

@media(max-width:576px){

.login-card{

    padding:28px;
}

.login-logo{

    width:75px;
    height:75px;
}

.login-card h3{

    font-size:24px;
}

}
/*end login*/
/*begin ALL ETHIOPIAN DATE INPUTS*/
.date-input-wrapper {
    position: relative;
    width: 100%;
}

    .date-input-wrapper .ethiopian-date {
        padding-right: 45px !important;
    }

.date-calendar-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007b9e;
    cursor: pointer;
    z-index: 9999;
    padding: 0;
}

    .date-calendar-icon:hover {
        color: #005f75;
    }

    .date-calendar-icon i {
        font-size: 16px;
        pointer-events: none;
    }
/*end ALL ETHIOPIAN DATE INPUTS*/
/*begin ALL form command label*/
/*.form-control {
    border-radius: 12px;
    min-height: 44px;
}

textarea.form-control {
    min-height: 140px;
}

.card {
    overflow: hidden;
}

.btn {
    font-weight: 600;
}

.form-label {
    color: #495057;
}

.form-check-input:checked {
    background: #198754;
    border-color: #198754;
}*/
/*end ALL form command label*/