﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none!important;
}
.custom-btn {
    padding: 12px 15px;
    background-color: #8C2AC4;
    border: 1px solid #8C2AC4;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn svg {
    width: 25px;
}

.custom-btn:hover {
    color: #fff;
    background-color: #7622a8;
}

.btn:focus {
    box-shadow: none;
}

.btn:active {
    transform: scale(0.99, 0.98);
}

.btn-outline {
    border: 1px solid #E81ECD;
    background: #fff;
    color: #000;
}

    .btn-outline:hover {
        color: #000;
        background: #fff;
    }

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #a09da0;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    width: 100%;
}

    .google-btn img {
        width: 22px;
        height: 22px;
    }

    .google-btn span {
        /*font-weight: 500;*/
        font-size: 0.95rem;
    }

.main-wrapper-auth {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

    .main-wrapper-auth::after,
    .main-wrapper-auth::before {
        content: '';
        position: absolute;
        z-index: 5;
        min-width: 40px;
        width: 4%;
        height: 160px;
    }

    .main-wrapper-auth::after {
        background-color: #E81ECD;
        top: 0;
        right: 0;
        border-radius: 0 0 0px 0px;
    }

    .main-wrapper-auth::before {
        background-color: #8C2AC4;
        bottom: 0;
        left: 0;
        border-radius: 0 0 0 0px;
    }

.login-section {
    width: 100%;
    min-height: 100vh;
    background: url('../../img/login-background.png');  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

    .login-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(226.12deg, rgba(18, 18, 18, 0) 43.13%, #121212 96.74%);
        z-index: 1;
    }

    .login-section .container {
        height: 100vh;
    }

.auth-row {
    position: relative;
    z-index: 10;
    align-items: stretch;
    height: 100%;
}

.auth-cover-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.auth-cover {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 4rem 0;
}

    .auth-cover h2 {
        font-weight: 700;
        font-size: 2.4rem;
    }

        .auth-cover h2 b {
            font-weight: 700;
            color: #E81ECD;
        }

        .auth-cover h2 span {
            font-weight: 300;
        }

    .auth-cover p {
        font-size: 1.3rem;
    }

    .auth-cover .auth-cover-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

.auth-cover1 {
    display: flex;
    flex-direction: column;
    color: #000;
    padding: 4rem 0;
}

    .auth-cover1 h2 {
        font-weight: 700;
        font-size: 2.4rem;
    }

        .auth-cover1 h2 b {
            font-weight: 700;
            color: #E81ECD;
        }

        .auth-cover1 h2 span {
            font-weight: 300;
        }

    .auth-cover1 p {
        font-size: 1.3rem;
    }

    .auth-cover1 .auth-cover1-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

.glass-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #FFFFFF36;
    border: 1px solid #FFFFFF4A;
    backdrop-filter: blur(24.600000381469727px);
    border-radius: 100px;
    gap: 0.25rem;
}

    .glass-btn svg {
        fill: #37B99C;
        height: 20px;
    }

    .glass-btn span {
        font-size: 0.8rem;
        font-weight: 500;
        color: #fff;
    }

.auth-form-wrapper {
    height: 100vh;
    overflow-y: auto;
    display: block;
}

    .auth-form-wrapper::-webkit-scrollbar {
        display: none;
    }

.login-form {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .login-form .form-logo {
        width: 40%;
    }

        .login-form .form-logo img {
            width: 100%;
        }

    .login-form .form-title {
        color: #000;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

        .login-form .form-title p {
            font-size: 0.9rem;
            margin: 0;
        }

            .login-form .form-title p span {
                color: #8C2AC4;
                font-weight: 700;
            }

        .login-form .form-title h6 {
            font-size: 2rem;
            font-weight: 700;
        }

    .login-form .form-inputs {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .login-form .form-inputs .input {
            display: flex;
            align-items: center;
            position: relative;
        }

            .login-form .form-inputs .input svg {
                width: 20px;
                height: 20px;
                stroke: #000;
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .login-form .form-inputs .input input {
                width: 100%;
                padding: 15px 20px 15px 50px;
                border-radius: 100px;
                border: 1px solid #E6E6E6;
                background-color: transparent;
                font-size: 0.9rem;
            }

                .login-form .form-inputs .input input::placeholder {
                    color: #000;
                }

    .login-form .forgot-password {
        display: flex;
        justify-content: end;
        width: 100%;
    }

        .login-form .forgot-password a {
            font-size: 0.9rem;
            font-weight: 500;
            color: #000;
            text-decoration:none;
        }

    .login-form .form-or {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
    }

        .login-form .form-or::after,
        .login-form .form-or::before {
            content: '';
            position: absolute;
            width: calc(50% - 20px);
            height: 1px;
            background-color: #E5E5E5;
            top: 50%;
            transform: translateY(-50%);
        }

        .login-form .form-or::after {
            left: 0;
        }

        .login-form .form-or::before {
            right: 0;
        }

        .login-form .form-or p {
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

    .login-form .form-line {
        color: #000;
    }

        .login-form .form-line p {
            font-size: 0.75rem;
        }

            .login-form .form-line p a {
                font-weight: 700;
                color: #0DA0E6;
            }



/*All Page Css    25/03/2026 Manoj*/

.page-title {
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
}




.page-subtitle {
    color: #121212;
    margin-bottom: 0px !important;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
}

.view-btn {
    background-color: var(--primary-pink);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
/* ===== FILTER ===== */
.filters-row {
    display: flex;
    gap: 15px;
}

.filter-item {
    border: 1px solid #E5E5E5;
    padding: 12px 15px;
    border-radius: 10px;
    background: #FFF;
    font-size: 14px;
    width: 223px;
    height: 48px;
    border-radius: 8px;
    justify-content: space-between;
    opacity: 1;
    border-width: 1px;
    padding-left: 20px;
    color: #979797;
}

.select-status {
    border: 1px solid #E5E5E5;
    padding: 12px 15px;
    border-radius: 10px;
    background: #FFF;
    font-size: 14px;
    width: 223px;
    height: 48px;
    border-radius: 8px;
    justify-content: space-between;
    opacity: 1;
    border-width: 1px;
    color: #979797;
}

.filter-item.search-input {
    padding-left: 35px; /* icon ke liye space */
    background-image: url('https://cdn-icons-png.flaticon.com/512/622/622669.png');
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 16px;
    color: #979797;
}

.date-wrapper {
    position: relative;
    display: inline-block;
}

/* Icon ko input ke andar set kar diya */
.datepicker-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #555;
    cursor: pointer;
    pointer-events: none; /* optional: click input pe hi rahe */
}





/* ===== STATUS ===== */
.status-pill {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    min-width: 85px;
    text-align: center;
}

.status-approved {
    background: #E6F7F4;
    color: #36B39C;
    border: 1px solid #36B39C;
}

.status-pending {
    background: #FFF4E6;
    color: #F2994A;
    border: 1px solid #F2994A;
}

.status-rejected {
    background: #FEEEEE;
    color: #EB5757;
    border: 1px solid #EB5757;
}

.status-processing {
    background: #E8F0FE;
    color: #4A90E2;
    border: 1px solid #4A90E2;
}

.action-icon {
    color: #9b51e0;
    cursor: pointer;
    font-size: 18px;
}
/* ===== PAGINATION ===== */
.pagination-footer {
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 6px;
}

.page-link-custom {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EEE;
    border-radius: 8px;
}

    .page-link-custom.active {
        background-color: var(--pagination-purple);
        color: #FFF;
    }

/* ========================= */
/* 🔥 RESPONSIVE ONLY BELOW */
/* ========================= */

/* Header mobile */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    .header-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .view-btn,
    .range-btn {
        width: 100%;
        text-align: center;
    }

    .page-subtitle {
        font-size: 13px;
    }
}

/* Filters responsive */
@@media (max-width: 992px) {
    .filters-row {
        flex-wrap: wrap;
    }

    .select-status,
    .input-amount {
        width: 100%;
        min-width: 100%;
    }
}

/* Mobile filters */
@media (max-width: 576px) {
    .filters-row {
        flex-direction: column;
        gap: 10px;
    }

    .filter-item {
        width: 100%;
    }
}

/* Small icon */
@media (max-width: 576px) {
    .action-icon {
        font-size: 16px;
    }
}

.dt-column-order {
    display: none !important;
}

.page-heading-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 12px;
}

    .page-heading-section .heading-title {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

        .page-heading-section .heading-title h1 {
            font-size: 2rem;
            font-weight: 600;
            margin: 0;
            color: black;
        }

        .page-heading-section .heading-title p {
            font-size: 0.98rem;
            margin: 0;
        }


.download-btn {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 12px 16px;
    border-radius: 50px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}


.status-pill {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    min-width: 85px;
    text-align: center;
}

.status-approved {
    background: #E6F7F4;
    color: #36B39C;
    border: 1px solid #36B39C;
}

.status-pending {
    background: #FFF4E6;
    color: #F2994A;
    border: 1px solid #F2994A;
}

.status-rejected {
    background: #FEEEEE;
    color: #EB5757;
    border: 1px solid #EB5757;
}

.status-processing {
    background: #E8F0FE;
    color: #4A90E2;
    border: 1px solid #4A90E2;
}

.action-icon {
    color: #9b51e0;
    cursor: pointer;
    font-size: 18px;
}
/* ===== PAGINATION ===== */
.pagination-footer {
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 6px;
}

.page-link-custom {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EEE;
    border-radius: 8px;
}

.dt-column-order {
    display: none !important;
}



.download-wrapper {
    position: relative;
    display: inline-block;
}

/* Button */
/* Dropdown hidden by default */
.download-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    width: 150px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Show dropdown on hover */
.download-wrapper:hover .download-dropdown {
    display: block;
}

/* ALSO works on click focus (important for mobile) */
.download-wrapper:focus-within .download-dropdown {
    display: block;
}

/* Items */
.download-dropdown div {
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

    .download-dropdown div:hover {
        background-color: #f5f5f5;
    }

/* Icons */
.fa-file-excel {
    color: green;
}

.fa-file-pdf {
    color: red;
}

.fa-file-csv {
    color: #ff9800;
}




/*===========Start OTP Panel Style============*/

.main-otp {
    display: flex;
    gap: 10px;
}

    .main-otp input {
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 20px;
        border-radius: 10px;
        border: 1px solid #ccc;
    }

.main input:focus {
    background-color: #7c3aed;
    color: #Fff;
    outline: none;
}

.otp-main-bar {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 13;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
}

.opt-sub-bar {
    width: 42%;
    margin: auto;
    background-color: #fff;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    border-radius: 10px;
}

.opt-verify-resand {
    width: 100%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px;
}

    .opt-verify-resand button {
        border: none;
        background-color: #8C2AC4;
        color: #fff;
        padding: 10px 10px;
        border-radius: 30px;
        cursor: pointer;
    }

    .opt-verify-resand p span a {
        color: #E81ECD;
        font-weight: 500;
    }

    .opt-verify-resand p {
        color: #000;
    }

.opt-head span i {
    font-size: 15px;
}

.main-otp {
    width: fit-content;
    margin: auto;
}

.opt-content p span {
    font-weight: 700;
}

.opt-content p {
    margin: 0;
    padding: 0;
}

.opt-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .opt-head button i {
        color: #999999;
    }

    .opt-head button {
        cursor: pointer;
        border: none;
        outline: none;
        background-color: transparent;
    }

    .opt-head h4 {
        color: #000;
    }


.opt-title {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    color:#121212;
}


/*===========End OTP Panel Style============*/