a.btn.changeLang {
    display: none;
}

.overlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 16;
    display: none;
}

.signin {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img {
    max-width: 90%;
    height: auto;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container,
.otp {
    width: 100%;
    max-width: 450px;
}

.bannertitle {
    font-size: 2.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.bannerSubtitle {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Mobile input styling */
.mobile-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* OTP button styling */
.otp-button {
    width: 100%;
    padding: 15px;
    background-color: #FF8C42;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.otp-button:hover {
    background-color: #e67e22;
}

.otp-button:disabled {
    background-color: grey;
    cursor: not-allowed;
}


.downloadbtn {
    width: 40%;
    padding: 10px;
    background-color: #FF8C42;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Links styling */
.links {
    margin-top: 20px;
    text-align: left;
}

.links .terms {
    color: #FF8C42;
    text-decoration: underline;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 5px;
}

.links .privacylink {
    color: #000;
    text-decoration: none;
    margin: 0px 10px;
    font-size: 1.5rem;
    font-weight: 400;
}

/* OTP section */
.otp {
    display: none;
    /* Hidden by default */
}

.otp-inputs {
    display: flex;
    margin-bottom: 10px;
}

.otp-inputs input {
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 15px;
}

.otp-inputs input:focus {
    outline: none;
    border-color: #f47820;
}

.resend-otp {
    margin-bottom: 5px;
}

.resend-otp p {
    font-size: 14px;
    color: #777;
}

.resend-otp a {
    color: #f47820;
    text-decoration: none;
    font-weight: bold;
}

.resend-otp a:hover {
    text-decoration: underline;
}

/* Verify button styling */
.verify {
    background-color: #f47820;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

.verify:hover {
    background-color: #d4681b;
}

/* Responsive behavior */
@media (max-width: 768px) {

    .container.signin,
    .container.otp {
        flex-direction: column;
        align-items: center;
    }

    .left-side {
        margin-bottom: 20px;
    }

    .right-side {
        max-width: 100%;
    }


}

@media (max-width: 480px) {
    .mobile-input {
        padding: 12px;
    }

    .otp-button {
        padding: 12px;
        font-size: 16px;
    }

    .links .terms,
    .links .privacylink {
        font-size: 12px;
    }

    .otp-inputs input {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }

    .downloadbtn {
        width: 80%;
    }

    #submitBtn {
        width: 100%;
    }
}


.container.signin,
.container.otp {
    /* Add any styling adjustments here */
}

.mobile-input {
    /* Ensure this aligns properly */
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.otp-button {
    /* Button styling */
    padding: 10px;
    background-color: orange;
    color: white;
    border: none;
    width: 100%;
    cursor: pointer;
}

.otp-button:disabled {
    background-color: grey;
    cursor: not-allowed;
}

/* .otp-inputs input {
    width: 60px;
    height: 60px;
    text-align: center;
    margin-right: 18px;
    font-size: 22px;
} */

.links {
    /* Styling for terms and privacy links */
    margin-top: 10px;
}

.privacylink {
    color: #000;
}
/* aniket 15 may */
.privacylink .terms {
        color: #005596;
    text-decoration: underline;
}
/* end */
.error-message {
    color: red;
    font-size: 1.5rem;
    margin-bottom: 15px;
}






.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    position: relative;
    margin-bottom: 20px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin: 0 auto;
    background-color: white;
    position: relative;
    z-index: 2;
}

.completed .circle {
    border-color: #FF9B41;
    background-color: #FF9B41;
}

.step p {
    margin-top: 10px;
    color: #555;
}

/* Adding the middle line between steps */
.step::before {
    content: "";
    position: absolute;
    top: 17%;
    left: 0%;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    z-index: 1;
    transform: translateX(-50%);
    ;
}

.step:first-child::before {
    display: none;
    /* Hide the line before the first step */
}

.completed::before {
    background-color: orange;
}

.table-container {
    padding: 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 60%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 16px;
}

thead {
    background-color: #f9f9f9;
}

th,
td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    color: #000;
}

th {
    font-weight: bold;
    color: #000;
}

tbody tr:hover {
    background-color: #ffe0c1;
    color: #000;
}

/* Responsive styles */
@media screen and (max-width: 768px) {

    th,
    td {
        padding: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .step p {
        font-size: 12px;
    }
    /* aniket 15 may */
    .popup.disclaimer-popup {
    width: 90% !important;
}
/* end */
}


.proceedPayment {

    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.proceedPayment .amountone {
    font-size: 2.5rem;
    color: #000;
    font-weight: 700;
    letter-spacing: 2px;
}

.proceedPayment .btnPayment {
    background: #FF9B41 !important;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #FF9B41;
    border-radius: 25px;
    font-size: 1.5rem;
    text-align: center;
    width: 15%;
}



.neft-details {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #FAFCFE;
    border-radius: 15px;
    border-radius: 10px;
    padding-bottom: 30px;

}

.neft-details .upload-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}


.neft-details .upload-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #626262;
}




/* .upload-section {
    margin-top: 20px;
}

.document-type {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

label {
    font-weight: bold;
}

.upload-section select {
    display: block;
    width: 50%;
    padding: 8px;
    margin-top: 5px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: none;
}

.upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
}

.drag-drop {
    margin-bottom: 20px;
}

.drag-drop span {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.upload-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #FF9B41;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #FF9B41;
    width: 35%;
    font-size: 1.5rem;
    font-weight: 600;
}

.upload-btn:hover {
    background-color: #fff;
}

.file-info p {
    font-size: 12px;
    color: #888;
}

.uploading-status {
    margin-top: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10px;
    margin-bottom: 25px;
}

.file-item span {
    font-size: 14px;
}

.progress-bar {
    width: 50%;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
}

.progress {
    width: 50%;
    height: 100%;
    background-color: #4caf50;
    border-radius: 3px;
}

.cancel-btn {
    border: none;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: #8080808C;
    border-radius: 50%;
    line-height: 16px;
    display: none;
}

.cancel-btn:hover {
    background: #8080808C;
} */

/* Responsive Styles */
@media (max-width: 600px) {
    .upload-section {
        padding: 10px;
    }

    .upload-box {
        padding: 20px;
    }

    .upload-btn {
        width: 100%;
    }

    .progress-bar {
        width: 70%;
    }
}


.reference-container {
    background-color: #ccffcc;
    /* Light green background */
    color: #006400;
    /* Dark green text color */
    padding: 15px;
    border-radius: 10px;
    /* Rounded corners */
    text-align: center;
    /* Center the text */
    max-width: 80%;
    margin: 20px auto;
    /* Center the container */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: add a subtle shadow */
}

.reference-number {
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .reference-container {
        max-width: 95%;
        /* Expand the container width on smaller screens */
        padding: 10px;
        /* Adjust padding for smaller screens */
    }

    .reference-number {
        display: block;
        /* Stack the reference number below the text on small screens */
        margin-top: 5px;
    }
}

.total-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-details {
    display: flex;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-right: 10px;
}

.gst {
    font-size: 16px;
    color: #888;
}

.total-text {
    font-size: 16px;
    font-weight: bold;
    color: #0056b3;
    margin-top: 5px;
    /* Space between price-details and Grand Total */
    text-align: left;
    /* Ensure left alignment */
}

.continue-btn {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 15%;
    border-radius: 11px;
}

.continue-btn:hover {
    background-color: #e68a00;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .total-container {
        flex-direction: column;
        text-align: center;
    }

    .continue-btn {
        width: 100%;
        margin-top: 10px;
    }
}


.step.active .circle {
    background-color: #FF9B41;
    /* or your active color */
}

.step.active p {
    font-weight: bold;
    /* or your desired styling for active step */
}

.submit-btn {
    display: none;
    /* Hide the button initially */
}

.submitdiv {
    position: relative;
    text-align: center;
}

.submitdiv .submit-btn {
    background-color: #f47820;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 10px;
    width: 8%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 46%;
    z-index: 999;
    font-size: 15px;
}

.highlightwallet {
    background-color: #ffe0c1 !important;
    color: #000;
}

.highlightwallet:hover {
    background-color: #ffe0c1 !important;
    color: #000;
}

.PID-info .tableOuter {

    background-color: #ffffff !important;
}


.highlight .tableOuter table td tr {
    background-color: #ffffff !important;
    border: 1px solid #d5d5d5;
    padding: 2%;
}


input.row-check {
    opacity: 1
}


.PID-info table,
table tr td,
table tr th {
    border: 1px solid #e8e8e8;
    text-align: center;
}


.upload-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 160px;
    margin: 20px auto;
}

.file-upload {
    position: relative;
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.file-upload:hover {
    background-color: #f0f0f0;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 26px;
    color: #888;
    margin-bottom: 10px;
}

.file-label {
    color: #555;
    margin-top: 10px;
    display: block;
}

.submit-container {
    display: flex;
    justify-content: center;
}

#submitBtn {
    background-color: #ccc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
}

#submitBtn.active {
    background-color: #4CAF50;
    cursor: pointer;
}

.errorMsgpopup p
{
    text-align:center;
}

/* aniket 15 may */
.popup.disclaimer-popup {
    max-width: 600px;
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    height: auto;
    padding: 34px;
    width: 39%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 99999;
}
/* end */

.disclaimer-popup p {
    font-size: 1.4rem;
}

.popupSec.disclaimerContentWraprequest,
.popupSec.disclaimerrequest {
    border-radius: 10px;
    padding: 34px;
    width: 39%;
    padding: 34px;
}

.discription-landing p,
.discription-landing ol li,
.discription-privcy-request p {
    color: initial;
}

.disclaimerandwhatsapp input[type=checkbox] {
    cursor: pointer;
}

.disclaimerrequest p,
.disclaimerContentWraplanding2 p {
    font-size: 1.4rem;
}

.disHeadingland {
    text-align: center;
    font-size: 2rem !important;
    color: #006fb7;
}

.thankYouPopup p,
.disclaimer-popup p,
.disclaimer-makepay-popup p,
.pay_go_popup p {
    text-align: center;
    padding-top: 20px;
}

.thankYouPopup .btnWrapper,
.disclaimer-popup .btnWrapper,
.disclaimer-makepay-popup .btnWrapper,
.pay_go_popup .btnWrapper {
    width: 100%;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
}

.thankYouPopup .btnWrapper .btn,
.disclaimer-popup .btnWrapper .btn,
.disclaimer-makepay-popup .btn,
.pay_go_popup .btn {
    max-width: 100px;
    min-width: 100px;
    padding: 3px 0px;
    font-size: 2rem;
    margin: 0 auto;
    text-align: center;
}


.popupSec.disclaimerContentWraprequest,
.popupSec.disclaimerrequest {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    height: auto;
    padding: 34px;
    width: 39%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 99999;
}


.popupSec.disclaimerContentWraprequest,
.popupSec.disclaimerrequest {
    border-radius: 10px;
    padding: 34px;
    width: 39%;
    padding: 34px;
}

.discription-landing p,
.discription-landing ol li,
.discription-privcy-request p {
    color: initial;
}

.disclaimerandwhatsapp input[type=checkbox] {
    cursor: pointer;
}

.disclaimerrequest p,
.disclaimerContentWraplanding2 p {
    font-size: 1.4rem;
}

.disHeadingland {
    text-align: center;
    font-size: 2rem !important;
    color: #006fb7;
}


.disclaimerrequest-closePop span:nth-child(1) {
    transform: rotate(47deg);
    position: relative;
    top: 10px;
}

.disclaimerrequest-closePop {
    width: 20px;
    position: absolute;
    height: 20px;
    right: 12px;
    top: 12px;
    cursor: pointer;
    z-index: 9999;
}

.disclaimerrequest-closePop span {
    display: block;
    background: black;
    height: 3px;
    width: 100%;
    transition: 0.5s ease all;
}

.disclaimerrequest-closePop span:nth-child(1) {
    transform: rotate(47deg);
    position: relative;
    top: 10px;
}

.disclaimerrequest-closePop span:nth-child(2) {
    transform: rotate(-45deg);
    position: relative;
    top: 7px;
}

@media screen and (max-width: 480px) {

    .popupSec.disclaimerContentWraprequest,
    .popupSec.disclaimerrequest {
        width: 95%;
    }

    .popupSec .close {
        top: 10px !important;
    }

    .step-indicator {
        margin-bottom: 0px;
    }

    .table-container {

        max-width: 100%;
        width: 100%;
    }

    .price-details {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.custom-checkbox {
    margin-right: 0px;
    margin-top: 3px;
    opacity: 1 !important;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}




.disclaimerContentWraprequest-closePop span:nth-child(1) {
    transform: rotate(47deg);
    position: relative;
    top: 10px;
}

.disclaimerContentWraprequest-closePop {
    width: 20px;
    position: absolute;
    height: 20px;
    right: 12px;
    top: 12px;
    cursor: pointer;
    z-index: 9999;
}

.disclaimerContentWraprequest-closePop span {
    display: block;
    background: black;
    height: 3px;
    width: 100%;
    transition: 0.5s ease all;
}

.disclaimerContentWraprequest-closePop span:nth-child(1) {
    transform: rotate(47deg);
    position: relative;
    top: 10px;
}

.disclaimerContentWraprequest-closePop span:nth-child(2) {
    transform: rotate(-45deg);
    position: relative;
    top: 7px;
}
