:root {
    --rg-gradient-angle: 96deg;

    /* Main Gradients */
    --rg-gradient-a: linear-gradient(var(--rg-gradient-angle), #D9D6FF 7.63%, #BFC8FF 37.94%, #A8E8F0 65.23%, #D9FFF7 92.12%);
    --rg-gradient-b: var(--rg-gradient-a);
    --rg-gradient-c: var(--rg-gradient-a);

    /* 75% Transparent */
    --rg-gradient-a-75: linear-gradient(var(--rg-gradient-angle), rgba(217, 214, 255, .75) 7.63%, rgba(191, 200, 255, .75) 37.94%, rgba(168, 232, 240, .75) 65.23%, rgba(217, 255, 247, .75) 92.12%);
    --rg-gradient-b-75: var(--rg-gradient-a-75);
    --rg-gradient-c-75: var(--rg-gradient-a-75);

    /* 50% Transparent */
    --rg-gradient-a-50: linear-gradient(var(--rg-gradient-angle), rgba(217, 214, 255, .5) 7.63%, rgba(191, 200, 255, .5) 37.94%, rgba(168, 232, 240, .5) 65.23%, rgba(217, 255, 247, .5) 92.12%);
    --rg-gradient-b-50: var(--rg-gradient-a-50);
    --rg-gradient-c-50: var(--rg-gradient-a-50);

    /* 25% Transparent */
    --rg-gradient-a-25: linear-gradient(var(--rg-gradient-angle), rgba(217, 214, 255, .25) 7.63%, rgba(191, 200, 255, .25) 37.94%, rgba(168, 232, 240, .25) 65.23%, rgba(217, 255, 247, .25) 92.12%);
    --rg-gradient-b-25: var(--rg-gradient-a-25);
    --rg-gradient-c-25: var(--rg-gradient-a-25);

    /* Pressed Buttons / Active State */
    --rg-gradient-a-pressed: linear-gradient(var(--rg-gradient-angle), rgba(217, 214, 255, .6) 7.63%, rgba(191, 200, 255, .75) 37.94%, rgba(168, 232, 240, .9) 65.23%, #D9FFF7 92.12%);
    --rg-gradient-b-pressed: var(--rg-gradient-a-pressed);
    --rg-gradient-c-pressed: var(--rg-gradient-a-pressed);
}

/* Background */
.member-login-section {
    padding: 90px 0;
    background: #f5f6fa;
    /* light neutral background */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Center Box */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 35px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
    transition: 0.3s ease;
    animation: fadeUp 0.7s ease;
}

/* Fade Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Lift */
.login-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Header */
.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.login-subtitle {
    color: #555;
    font-size: 15px;
}

/* Input Group */
.input-group-custom {
    margin-bottom: 18px;
}

.input-group-custom label {
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
    display: block;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 15px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #062e39;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    background: #fff;
}

/* Forgot Password */
.forgot-link {
    color: #062e39;
    font-size: 14px;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    background: #ea5d2b;
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.login-btn:hover {
    transform: translateX(5px);
    background: #ea5d2b;
}

/* Responsive */
@media(max-width: 480px) {
    .login-box {
        padding: 30px 22px;
    }
}

/* .input-wrapper .toggle-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 15px;
}

.toggle-eye:hover {
    color: #555;
} */

#loginLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    backdrop-filter: blur(3px);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: #007bff;
}




.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e6e9f1;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 50px;
    color: #4a4e69;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}


/* dashboard */

/* Sidebar Default */
.sidebar {
    min-height: 100%;
    background: #fff;
    border-right: 1px solid #eee;
    padding-top: 20px;
}

/* Menu List Styles */
.dashboard-menu .nav-link {
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
    background: #f8f9fa;
    margin-bottom: 8px;
    border: 1px solid #e7e7e7;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.06);
}

/* Hover Effect - Gray Background + Elevation */
.dashboard-menu .nav-link:hover {
    background: #eaeaea !important;
    color: #00A396 !important;
    transform: translateX(5px);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12);
}

/* Icons */
.dashboard-menu .nav-link i {
    font-size: 18px;
}

/* Disabled Menu */
.dashboard-menu .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f1f1;
    border: 1px solid #ddd;
}

/* ACTIVE TAB LOOK */
.dashboard-menu .nav-link.active {
    background: #00A396 !important;
    color: #fff !important;
    box-shadow: 0px 4px 12px rgba(0, 163, 150, 0.3);
}

.dashboard-menu .nav-link.active i {
    color: #fff !important;
}

/* Profile Image Box */
.profile-img-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00A396;
    box-shadow: 0 4px 10px rgba(0, 163, 150, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Image perfect crop */
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important: crops image to fit */
    object-position: center;
}


.inner_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: #00A396;
}

/*  */
#loginLoader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    backdrop-filter: blur(3px);
}


#userDashboard {
    background-image: var(--rg-gradient-a);
    background-size: cover;
    background-repeat: no-repeat;
}


.image-upload-container {
    /*list-style: none;*/
    /*padding: 0;*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap: 10px;*/
}

/*.image-upload-container li {*/
/*    flex: 1 1 calc(33.333% - 10px);*/
/*    box-sizing: border-box;*/
/*}*/
.image-upload-box {
    border: 2px dashed #ccc;
    padding: 10px;
    text-align: center;
    position: relative;
    background-color: #fff;
    margin-top: 15px;
}

.image-upload-box img {
    max-width: 100%;
    height: auto;
}

.remove-btn {
    color: red;
    cursor: pointer;
    /*position: absolute;*/
    top: 5px;
    right: 5px;
}

.add-new-box {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    border: 2px dashed #ccc;
    height: 150px;
    cursor: pointer;
    background-color: #fff;
    margin: auto;
    text-align: center;
    margin-top: 15px;
}

.default-btn {
    margin-top: 5px;
    display: inline-block;
    font-size: 12px;
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.default-btn.selected {
    background-color: #28a745;
    /* Green for selected */
}

#addNewBox .fa {
    font-size: 40px;
    padding-top: 35px;
}

.card {
    margin-bottom: 25px;
    border: 1px solid #E6E9EB !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}

.card:hover {
    -webkit-box-shadow: 0 0 40px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 40px rgba(8, 21, 66, 0.05);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card .card-header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ecf3fa;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.card .card-header.card-no-border {
    border-bottom: none !important;
}

.card .card-header h5:not(.mb-0),
.card .card-header h5:not(.m-0) {
    margin-bottom: 0;
    text-transform: capitalize;
}

.card .card-header>span {
    font-size: 12px;
    color: var(--body-font-color);
    margin-top: 5px;
    display: block;
    letter-spacing: 1px;
}

.card .card-header .card-header-right {
    border-radius: 0 0 0 7px;
    right: 20px;
    top: 12px;
    display: inline-block;
    float: right;
    padding: 8px 0;
    position: absolute;
    background-color: #fff;
    z-index: 1;
}

.card .card-header .card-header-right .card-option {
    text-align: right;
    width: 35px;
    height: 20px;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.card .card-header .card-header-right .card-option li {
    display: inline-block;
}

.card .card-header .card-header-right .card-option li:first-child i {
    -webkit-transition: 1s;
    transition: 1s;
    font-size: 16px;
    color: var(--theme-deafult);
}

.card .card-header .card-header-right .card-option li:first-child i.icofont {
    color: unset;
}

.card .card-header .card-header-right i {
    margin: 0 5px;
    cursor: pointer;
    color: #2c323f;
    line-height: 20px;
}

.card .card-header .card-header-right i.icofont-refresh {
    font-size: 13px;
}

.card .card-body {
    padding: 20px;
    background-color: transparent;
}

.card .card-body p:last-child {
    margin-bottom: 0;
}

.card .sub-title {
    padding-bottom: 12px;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
}

.card .card-footer {
    background-color: #fff;
    border-top: 1px solid #ecf3fa;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card.card-load .card-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 8;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card.card-load .card-loader i {
    margin: 0 auto;
    color: var(--theme-deafult);
    font-size: 20px;
}

.card.full-card {
    position: fixed;
    top: 0;
    z-index: 99999;
    -webkit-box-shadow: none;
    box-shadow: none;
    right: 0;
    border-radius: 0;
    border: 1px solid #efefef;
    width: calc(100vw - 12px);
    height: 100vh;
}

.card.full-card .card-body {
    overflow: auto;
}

.page-body-wrapper .card .sub-title {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    color: #051A1A;
}

.card-absolute {
    margin-top: 20px;
}

.card-absolute .card-header {
    position: absolute;
    top: -20px;
    left: 15px;
    border-radius: 0.25rem;
    padding: 10px 15px;
}

.card-absolute .card-header h5 {
    font-size: 17px;
}

.card-absolute .card-body {
    margin-top: 10px;
}

.card-header .border-tab {
    margin-bottom: -13px;
}