body {
    background: #f3f4f6;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.logo {
    height: 50px;
}

.sub-text {
    font-size: 16px;
    color: #4f46e5;
    font-weight: 700;

}

.logout-btn {
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid #fecaca;
    color: #dc2626;
    background: #fff5f5;
}



/* CARD */
.login-card {
    width: 360px;
    max-width: 100%;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* TOP GRADIENT */
.card-top {
    background: linear-gradient(135deg, #3b82f6, #64018f);
    padding: 35px 20px;
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
    backdrop-filter: blur(6px);
}

/* LABEL */
.label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}



/* INPUT */
.custom-input,
.custom-input .form-control {
    border-radius: 10px !important;
    background: #f9fafb;
    border: 1px solid #e5e7eb !important;
    height: 44px;
}

.custom-input input {
    background: transparent !important;
}

/* HELPER */
.helper {
    font-size: 11px;
    color: #9ca3af;
}

/* BUTTON */
.otp-btn {
    background: #d1d5db;
    border-radius: 10px;
    border: none;
    height: 44px;
    color: #6b7280;
    transition: all 0.3s ease;
}

/* BACK BUTTON (OUTSIDE) */
.otp-top-bar {
    width: 360px;
    max-width: 100%;
}

.otp-back-link {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
}

.otp-back-link:hover {
    color: #4f46e5 !important;
}

/* OTP */
.otp-field {
    width: 44px;
    height: 44px;
    text-align: center;
}

/* SMALL TEXT */
.otp-note {
    font-size: 11px;
    color: #9ca3af;
}


/* BACK BUTTON (BOTTOM) */
/* BACK BUTTON */
.otp-back-btn {
    background: #f3f4f6;
    border-radius: 10px;
    border: none;
    height: 44px;
    color: #374151;
    transition: all 0.3s ease;
}

/* BACK BUTTON HOVER */
    .otp-back-btn:hover {
        background: linear-gradient(135deg, #3b82f6, #64018f);
        color: #ffffff;
    }


/* VERIFY BUTTON */
.otp-btn {
    background: linear-gradient(135deg, #3b82f6, #64018f);
    border-radius: 10px;
    border: none;
    height: 44px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* VERIFY BUTTON HOVER (ONLY WHEN ENABLED) */
    .otp-btn:not(:disabled):hover {
        background: linear-gradient(135deg, #3b82f6, #64018f);
        color: #ffffff;
    }

/* DISABLED STATE */
.otp-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* SECURE TEXT */
.secure-text {
    font-size: 10px;
    color: #16a34a;
}

/* FEATURES */
.feature-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    font-size: 13px;
    margin-top: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.features {
    max-width: 760px;
}

/* DEMO */
.demo-box {
    background: #fff7ed;
    border: 1px solid #fde68a;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
}

/* FOOTER */
/* Push footer to bottom */
.main-wrapper {
    flex: 1;
    min-height: 75vh;

}

/* FOOTER */
.footer-text {
    width: 100%;
    font-size: 12px;
    color: #6b7280;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
    text-align: center;
}



/* OTP PAGE ONLY */
.otp-card {
    max-width: 360px;
}

/* BACK */
.otp-back {
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
}

.otp-field {
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: 0.2s;
}

.otp-field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    outline: none;
}


/* LABEL */
.otp-label {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}

/* RESEND */
.otp-resend {
    font-size: 13px;
    color: #6b7280;
}

.otp-resend span {
    color: #4f46e5;
    font-weight: 600;
}

/* BUTTONS */
.otp-back-btn {
    background: #f3f4f6;
    border-radius: 10px;
    font-size: 10px;

}

.otp-verify-btn {
    background: #d1d5db;
    border-radius: 10px;
    font-size: 10px;
}

/* SMALL NOTE */
.otp-note {
    font-size: x-small;
    color: #9ca3af;
}

/* FOOTER TEXT */
.otp-footer-text {
    font-size: 11px;
    color: #9ca3af;
}




/* =========================
   CONSENT PAGE (NO CONFLICT)
========================= */
/* SECTION CARD */

.consent-title-bar-div {
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
    /* ✅ CENTER */
}

.consent-section {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
    /* ✅ CENTER */
}



/* HEADER */
.consent-section-header {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    padding: 16px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* ICON */
.consent-header-icon {
    font-size: 18px;
}

/* BODY */
.consent-section-body {
    padding: 22px 22px 26px;
}

/* LABEL */
.consent-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

/* REQUIRED STAR */
.req {
    color: #ef4444;
}

/* INPUT */
.consent-input {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

/* FOCUS */
.consent-input:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

/* DISABLED */
.consent-input.disabled {
    background: #e5e7eb;
    color: #6b7280;
}

/* SELECT FIX */
select.consent-input {
    appearance: none;
}

/* SPACING MATCH */
.row.g-4 {
    row-gap: 20px;
}


/* LOCATION */

/* LOCATION BODY BG (slightly grey like screenshot) */
.location-body {
    background: #f9fafb;
}

/* FILLED INPUT (District style) */
.consent-input.filled {
    background: #e5e7eb;
    color: #374151;
    font-weight: 500;
}

/* SELECT WRAPPER (custom arrow spacing) */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

/* CUSTOM DROPDOWN ARROW */
.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #6b7280;
    pointer-events: none;
}

/* TIGHTER SPACING (match screenshot) */
.location-body .row {
    row-gap: 18px;
}

/* LABEL ADJUSTMENT */
.location-body .consent-label {
    font-size: 13px;
    margin-bottom: 5px;
}



/* LAND */

/* INNER LAND BOX */
.land-card {
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px;
}

/* TITLE */
.land-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

/* HELPER TEXT */
.land-helper {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

/* GREEN BUTTON */
.add-survey-btn {
    background: #4ade80;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 500;
    border: none;
}

/* BUTTON HOVER */
.add-survey-btn:hover {
    background: #22c55e;
    color: #fff;
}

/* ALIGN INPUT SPACING */
.land-card .consent-input {
    height: 46px;
}

/* LABEL ALIGN */
.land-card .consent-label {
    font-size: 13px;
    margin-bottom: 5px;
}

/* UPLOAD */


/* HEADER NOTE */
.upload-note {
    font-size: 12px;
    color: #e5e7eb;
}

/* LABEL */
.upload-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

/* GROUP SPACING */
.upload-group {
    margin-bottom: 4px;
}

/* UPLOAD BOX */
.upload-box {
    /* height: 160px;              FIXED HEIGHT */

    border: 2px dashed #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    padding: 28px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 12px;
}

.upload-box-download {
    /* height: 160px;              FIXED HEIGHT */

    border: 2px dashed #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    padding: 28px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 12px;
}

.upload-content {
    width: 100%;
}

.upload-content div {
    word-break: break-word;
}

/* ACTIVE (LAST ONE PURPLE BORDER) */
.upload-box.active {
    border-color: #c084fc;
    background: #faf5ff;
}

/* HOVER */
.upload-box:hover {
    border-color: #9333ea;
}

/* CONTENT */
.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ICON */
.upload-icon {
    font-size: 28px;
    margin-bottom: 6px;
    color: #9ca3af;
}

/* MAIN TEXT */
.upload-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* SUB TEXT */
.upload-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}



/* nOIFICATION */


/* SUBTEXT */
.notify-subtext {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

/* LIST */
.notify-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ITEM */
.notify-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}



/* TEXT */
.notify-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* BUTTON */
.notify-btn {
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 13px;
    border: none;
}

/* HOVER */
.notify-btn:hover {
    background: #e0e7ff;
}

/* ALERT */
.notify-alert {
    background: #fef3c7;
    border: 1px solid #facc15;
    border-radius: 12px;
    padding: 16px;
}

/* ALERT TEXT */
.alert-text {
    font-size: 14px;
    color: #92400e;
    font-weight: 500;
}


/* DELACLARATION OF AUTH */


/* CARD */
.consent-declaration {
    background: #f8fbff;
    border: 1.5px solid #bfdbfe;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;

}

/* CHECKBOX */
.decl-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

/* TITLE */
.decl-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

/* SUBTEXT */
.decl-subtext {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.4;
}




/* signed consined form */


/* CARD */
.legal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
}

/* TEXT ROW */
.legal-row {
    font-size: 14px;
    color: #374151;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

/* INPUT */
.legal-input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
    background: #f9fafb;
}

/* SMALL INPUT */
.legal-input.small {
    width: 140px;
}

/* FILLED */
.legal-input.filled {
    background: #e5e7eb;
}

/* TITLE */
.legal-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* TEXT */
.legal-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* LIST */

.legal-list {
    list-style: none;
    padding-left: 0;
}

/* EACH ITEM */
.legal-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #374151;
}

/* CUSTOM TICK ICON */
.legal-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #6366f1;
    /* blue-purple like UI */
}

/* SUBTITLE */
.legal-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* RADIO */
.legal-radio {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

.legal-radio input {
    margin-right: 6px;
}


/* WRAPPER */
.consent-warning {
    background: #fefce8;
    border: 1.5px solid #facc15;
    border-radius: 16px;
    padding: 16px 18px;
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
}

/* ICON */
.warn-icon {
    font-size: 18px;
    color: #d97706;
    margin-top: 2px;
}

/* TITLE */
.warn-title {
    font-size: 15px;
    font-weight: 600;
    color: #92400e;
}

/* SUBTEXT */
.warn-sub {
    font-size: 13px;
    color: #b45309;
    margin-top: 2px;
}

/* BUTTON */
.warn-btn {
    background: #4ade80;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* HOVER */
.warn-btn:hover {
    background: #22c55e;
    color: #fff;
}


/* concent submit */


/* SUBMIT BUTTON */
.submit-btn {
    background: #e5e7eb;
    color: #6b7280;
    border: none;
    border-radius: 14px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: not-allowed;
    /* overflow: hidden; */
    max-width: 950px;
    margin: 0 0px;
}

/* HELP BOX */
.help-box {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 16px;
    padding: 16px 18px;
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
}

/* ICON */
.help-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* TITLE */
.help-title {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* SUBTEXT */
.help-sub {
    font-size: 13px;
    color: #3b82f6;
    margin-top: 2px;
}

/* faq */


/* CARD */
.faq-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 950px;
    margin: 40px auto;
}

/* HEADER */
.faq-header {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

/* ICON */
.faq-icon {
    font-size: 18px;
    color: #9333ea;
}

/* ITEM */
.faq-item {
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
}

/* FIRST ITEM NO BORDER */
.faq-item:first-child {
    border-top: none;
}


/* QUESTION CLICK AREA */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* ANSWER DEFAULT HIDDEN */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 13px;
    color: #6b7280;
}

/* ACTIVE OPEN */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 6px;
}

/* ARROW */
.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #9ca3af;
}

/* ROTATE WHEN OPEN */
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}


/* /////////////////////////////////////////////////// */
.consent-wrapper {
    max-width: 950px;
}

/* TITLE */
.consent-title-bar {
    background: #f3f4f6 !important;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* CARD */
.consent-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    overflow: hidden;
}

/* HEADER */
.consent-header {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
}

/* TEXT */
.consent-text {
    font-size: 13px;
    color: #374151;
}

/* LIST */
.consent-list {
    padding-left: 18px;
    font-size: 13px;
}

/* UPLOAD */
.consent-upload-box {
    border: 1px dashed #d1d5db;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    color: #6b7280;
    background: #fafafa;
}

/* DOC */
.consent-doc-row {
    display: flex;
    justify-content: space-between;
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 6px;
}

/* VIEW */
.consent-view-btn {
    background: #eef2ff;
    color: #4f46e5;
}

/* ALERT */
.consent-alert {
    background: #fef3c7;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
}

/* BUTTONS */
.consent-add-btn {
    background: #10b981;
    color: #fff;
}

.consent-save-btn {
    background: #22c55e;
    color: #fff;
}

.consent-submit-btn {
    background: #6b7280;
    color: #fff;
}



.error-text {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.input-error {
    border: 1px solid #dc2626 !important;
    background: #fff5f5 !important;
}


/* CUSTOM DROPDOWN ARROW */
select.consent-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%236b7280' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.24 4.5a.75.75 0 01-1.08 0l-4.24-4.5a.75.75 0 01.02-1.06z'/></svg>");
    
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;

    padding-right: 35px; /* space for arrow */
}

/* MOBILE VIEW (480px and below) */
@media (max-width: 480px) {

    .consent-wrapper {
        width: calc(100% - 20px);
    }

    /* HEADER */
    .header {
        padding: 10px 12px !important;
        margin-bottom: 10px;
    }

    .logo {
        height: 50px;
    }

    .sub-text {
        font-size: 14px;
    }

    .logout-btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    /* MAIN CARD */
    .login-card {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .card-top {
        padding: 25px 15px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* TEXT */
    h5 {
        font-size: 18px;
    }

    .label {
        font-size: 12px;
    }

    .helper {
        font-size: 10px;
    }

    /* INPUT */
    .custom-input,
    .custom-input .form-control {
        height: 40px;
        font-size: 13px;
    }

    /* BUTTON */
    .otp-btn {
        height: 40px;
        font-size: 14px;
    }

    .otp-top-bar {
        width: calc(100% - 20px);
    }

    .main-wrapper {
        flex: 1;
        min-height: 80vh;

    }

    /* FEATURES */
    .features {
        max-width: 100%;
        padding: 0 10px;
    }

    .feature-box {
        padding: 10px;
        font-size: 12px;
    }

    /* DEMO */
    .demo-box {
        font-size: 12px;
        padding: 8px;
    }

    .submit-btn {
        background: #e5e7eb;
        color: #6b7280;
        border: none;
        border-radius: 14px;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: not-allowed;
        /* overflow: hidden; */
        max-width: 950px;
        margin: 0;
    }

    /* FOOTER */
    .footer-text {
        font-size: 11px;
        padding: 16px 10px;
    }
}

.remove-card-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

    .remove-card-btn:hover {
        background: #dc3545;
        color: white;
        transform: scale(1.05);
    }

.consent-disclaimer {
    font-size: small;
    font-weight: 600;
    color: #ef4444;
}

.cursor-pointer {
    cursor: pointer;
}

.section-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    color: #fff;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 15px;
}

.section-body {
    padding: 20px;
}

/* FIELD */
.field-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.field-value {
    background: #f9fafb;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.legal-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.upload-preview {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    font-size: 14px;
    font-weight: 500;
}

.submit-btn {
    background: white;
    color: #6b7280;
    border: solid 1px black;
    border-radius: 14px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

    /* Hover effect */
    .submit-btn:hover {
        background: #4f46e5;
        color: #ffffff;
    }

/* Optional: mobile responsive */
.action-btns {
    flex-wrap: wrap;
}

.success-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: auto;
}

.badge-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.ref-box {
    background: #e8f5e9;
    border: 1px solid #b7e1c0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.ref-label {
    font-size: 13px;
    color: #6c757d;
}

.ref-id {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin: 5px 0;
}

.ref-note {
    font-size: 12px;
    color: #6c757d;
}

.btn-success-custom {
    background: linear-gradient(to right, #43a047, #2e7d32);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    color: white;
    transition: 0.3s;
}


    .btn-success-custom:hover {
        opacity: 0.9;
    }

.content-area {
    min-height: calc(100vh - 120px);
    /* adjust based on header height */
    display: flex;
    justify-content: center;
    align-items: center;
}