

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 100 1000;
    src: url(../fonts/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 100 1000;
    src: url(../fonts/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --radius: 12px;
    --default-border-color: #E5E7EB;
    --color-primary: #020202;
    --color-secondary: #fe6407;
}

body {
    font-family: "DM Sans", serif;
    background: #F0F4FF !important;
    color: var(--gray-900);
    min-height: 100vh;
}

/* ── HEADER ── */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--default-border-color);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

    .brand-icon svg {
        width: 20px;
        height: 20px;
    }

.brand-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.brand-text p {
    font-size: 11px;
    color: var(--gray-500);
}

.header-center {
    text-align: center;
}

    .header-center h2 {
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        margin-bottom: 0px;
        justify-content: center;
        gap: 8px;
    }

    .header-center p {
        font-size: 12px;
        color: var(--gray-500);
        margin-top: 2px;
        margin-bottom: 0px;
    }

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #DCFCE7;
    border: 1px solid #BBF7D0;
    border-radius: 20px;
    padding: 6px 14px;
}

    .secure-badge .dot {
        width: 28px;
        height: 28px;
        background: #16A34A;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .secure-badge .dot i {
            height: 16px;
            color: #fff;
        }

.secure-badge-text p:first-child {
    font-size: 13px;
    font-weight: 600;
    color: #16A34A;
    margin-bottom: 0px;
}

.secure-badge-text p:last-child {
    font-size: 11px;
    color: #16A34A;
    opacity: .8;
    margin-bottom: 0px;
}

/* ── MAIN ── */
main {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── CARDS ── */
.conset-approval-card {
    background: #ffffff;
    border: 1px solid var(--default-border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .card-title .icon-circle {
        width: 32px;
        height: 32px;
        background: #FEF4EF;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .card-title .icon-circle i {
            height: 16px;
            color: var(--color-secondary);
        }

/* ── TWO-COLUMN ROW ── */


/* ── REQUEST DETAILS ── */
.detail-table {
    width: 100%;
    border-collapse: collapse;
}

    .detail-table tr + tr td {
        border-top: 1px solid var(--default-border-color);
    }

    .detail-table td {
        padding: 9px 4px;
        font-size: 13px;
        vertical-align: top;
    }

        .detail-table td:first-child {
            color: var(--gray-500);
            width: 115px;
            white-space: nowrap;
        }

        .detail-table td:nth-child(2) {
            color: var(--gray-400);
            width: 16px;
        }

        .detail-table td:last-child {
            color: var(--gray-900);
            font-weight: 500;
        }

    .detail-table .link {
        color: var(--color-primary);
        text-decoration: none;
        font-size: 12px;
    }

    .detail-table .highlight {
        color: #D97706;
        font-weight: 600;
    }

/* ── DOCUMENTS ── */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    max-height: 430px;
    overflow-y: auto;
    padding-right: 6px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    transition: .25s;
}

.doc-grid::-webkit-scrollbar {
    width: 8px;
}

.doc-grid::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 20px;
}

.doc-grid::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.doc-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 5px 14px rgba(0,0,0,.08);
}

.doc-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.doc-info {
    flex: 1;
}

    .doc-info strong {
        font-size: 13px;
        font-weight: 600;
        display: block;
    }

    .doc-info span {
        font-size: 12px;
        color: var(--gray-500);
    }


/* ── CONSENT NOTICE ── */
.notice-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.notice-text {
    flex: 1;
}

    .notice-text p {
        font-size: 13px;
        color: var(--gray-700);
        line-height: 1.7;
        margin-bottom: 6px;
    }

        .notice-text p:last-child {
            margin-bottom: 0;
        }

.notice-illustration {
    width: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .85;
}

/* ── FEATURES ── */
.features {
    /*display: grid;*/
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--default-border-color);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.feature-item {
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .feature-item:last-child {
        border-right: none;
    }

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FEF4EF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        height: 18px;
        color: var(--color-secondary);
    }

.feature-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 0px;
}

/* ── FOOTER ACTIONS ── */
.footer-actions {
    background: #ffffff;
    border: 1px solid var(--default-border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

    .checkbox-row input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 1px;
        accent-color: var(--color-primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .checkbox-row label {
        font-size: 13px;
        color: var(--gray-700);
        line-height: 1.5;
        cursor: pointer;
    }

.action-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cosent-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
}

.btn svg {
    width: 15px;
    height: 15px;
}

/*.btn-decline {
    color: var(--red);
    border-color: var(--red);
    background: #ffffff;
}

    .btn-decline:hover {
        background: var(--red-light);
    }

.btn-approve {
    color: #16a34a;
    background: #dcfce7;
    border-color: #16a34a;
}

    .btn-approve:hover {
        background: #dcfce7;
        border-color: #16a34a;
    }

    .btn-approve:disabled, .btn-approve.disabled {
        opacity: .45;
        cursor: not-allowed;
        background: var(--color-primary);
        border-color: var(--color-primary);
        color : white;
    }*/
/* =========================================
   APPROVE BUTTON
   ========================================= */

.btn-approve {
    color: #16A34A;
    background-color: #FFFFFF;
    border: 1px solid #16A34A;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}


    /* Hover - Solid Green */

    .btn-approve:hover {
        color: #FFFFFF;
        background-color: #16A34A;
        border-color: #16A34A;
        box-shadow: 0 3px 8px rgba(22, 163, 74, 0.20);
    }


    /* Active */

    .btn-approve:active {
        color: #FFFFFF;
        background-color: #15803D;
        border-color: #15803D;
        box-shadow: none;
        transform: translateY(1px);
    }


    /* Focus */

    .btn-approve:focus,
    .btn-approve:focus-visible {
        color: #FFFFFF;
        background-color: #16A34A;
        border-color: #16A34A;
        box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
    }


    /* Disabled */

    .btn-approve:disabled,
    .btn-approve.disabled {
        color: #9CA3AF !important;
        background-color: #F3F4F6 !important;
        border-color: #D1D5DB !important;
        opacity: 1;
        cursor: not-allowed;
        box-shadow: none !important;
        transform: none !important;
    }


        /* Disabled Hover */

        .btn-approve:disabled:hover,
        .btn-approve.disabled:hover {
            color: #9CA3AF !important;
            background-color: #F3F4F6 !important;
            border-color: #D1D5DB !important;
            box-shadow: none !important;
        }


/* =========================================
   DECLINE BUTTON
   ========================================= */

.btn-decline {
    color: #DC2626;
    background-color: #FFFFFF;
    border: 1px solid #DC2626;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}


    /* Hover - Solid Red */

    .btn-decline:hover {
        color: #FFFFFF;
        background-color: #DC2626;
        border-color: #DC2626;
        box-shadow: 0 3px 8px rgba(220, 38, 38, 0.20);
    }


    /* Active */

    .btn-decline:active {
        color: #FFFFFF;
        background-color: #B91C1C;
        border-color: #B91C1C;
        box-shadow: none;
        transform: translateY(1px);
    }


    /* Focus */

    .btn-decline:focus,
    .btn-decline:focus-visible {
        color: #FFFFFF;
        background-color: #DC2626;
        border-color: #DC2626;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    }


    /* Disabled */

    .btn-decline:disabled,
    .btn-decline.disabled {
        color: #9CA3AF !important;
        background-color: #F3F4F6 !important;
        border-color: #D1D5DB !important;
        opacity: 1;
        cursor: not-allowed;
        box-shadow: none !important;
        transform: none !important;
    }


        /* Disabled Hover */

        .btn-decline:disabled:hover,
        .btn-decline.disabled:hover {
            color: #9CA3AF !important;
            background-color: #F3F4F6 !important;
            border-color: #D1D5DB !important;
            box-shadow: none !important;
        }


    /* =========================================
   ICONS
   ========================================= */

    .btn-approve i,
    .btn-decline i {
        transition: color 0.2s ease;
    }


/* Normal Icon */

.btn-approve i {
    color: #16A34A;
}

.btn-decline i {
    color: #DC2626;
}


/* Hover Icon */

.btn-approve:hover i,
.btn-decline:hover i {
    color: #FFFFFF;
}


/* Disabled Icon */

.btn-approve:disabled i,
.btn-approve.disabled i,
.btn-decline:disabled i,
.btn-decline.disabled i {
    color: #9CA3AF !important;
}

/* ── PAGE FOOTER ── */
.page-footer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    padding: 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

    .page-footer a {
        color: var(--color-primary);
        text-decoration: none;
    }

        .page-footer a:hover {
            text-decoration: underline;
        }

.separator {
    color: var(--gray-300);
}





.bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.bottom-sheet {
    position: fixed;
    left: 0;
    bottom: -200%;
    width: 100%;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 25px;
    box-shadow: 0 -10px 40px rgba(0,0,0,.15);
    transition: .35s ease;
    z-index: 9999;
}

    .bottom-sheet.active {
        bottom: 0;
    }

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet h3 {
    margin-bottom: 10px;
}

.bottom-sheet p {
    color: #666;
    margin-bottom: 20px;
}

.sheet-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.btn-cancel,
.btn-verify {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-cancel {
    background: #e5e7eb;
}

.btn-verify {
    background: var(--color-secondary);
    color: #fff;
    font-weight: 600;
}

.bottom-Content {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.OTP-Swapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
}

.otp-input {
    width: 50px;
    height: 50px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    outline: none;
    transition: .2s;
}

    .otp-input:focus {
        border-color: var(--color-secondary);
        box-shadow: 0 0 0 3px rgba(254,100,7,.15);
    }

    .otp-input::-webkit-inner-spin-button,
    .otp-input::-webkit-outer-spin-button {
        display: none;
    }

.lottie-box {
    width: 220px;
    height: 220px;
    margin: 0px auto;
}

.lottie-box {
    animation: popIn 0.4s ease;
}


.mobile-screen-d-none {
    display: block;
}

.mobile-screen-d-block {
    display: none;
}

@media (max-width: 768px) {
    header {
        padding: 12px 16px;
        height: auto;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }

    main {
        margin: 16px auto;
        padding: 0 10px 0px;
    }

    .brand img {
        height: 50px
    }

    .header-center {
        order: -1;
        width: 100%;
    }

    .secure-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #DCFCE7;
        border: 1px solid #BBF7D0;
        border-radius: 8px;
        padding: 6px 8px;
    }

    .secure-badge-text p:last-child {
        font-size: 10px;
        color: #16A34A;
        opacity: .8;
        margin-bottom: 0px;
    }

    .secure-badge-text p:first-child {
        font-size: 12px;
        font-weight: 600;
        color: #16A34A;
        margin-bottom: 0px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr;
        margin-left: 0px;
        margin-right: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .feature-item:nth-child(3) {
        border-top: 1px solid var(--default-border-color);
    }

    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .action-btns {
        justify-content: flex-end;
    }

    .mobile-screen-d-none {
        display: none;
    }

    .mobile-screen-d-block {
        display: block;
    }

    .secure-title h2 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .action-btns {
        justify-content: center;
    }

    .feature-item {
        padding: 10px 10px;
    }

    .documentrequested-card {
        padding-bottom: 10px !important;
    }

    .conset-approval-card {
        padding: 16px 22px;
    }

    .footer-actions {
        padding: 16px 22px;
    }

    .mobile-border {
        border-bottom: 1px solid #e5e7eb;
    }

    .secure-badge .dot i {
        height: 15px;
        color: #fff;
        font-size: 12px;
    }

    .bottom-Content {
        width: unset;
    }

    .sheet-buttons {
        justify-content: center;
    }

    .otp-input {
        width: 45px;
        height: 45px;
    }

    .OTP-Swapper {
        gap: 7px;
        width: unset !important;
    }
}

@media only screen and (max-width: 576px) {
}
