/* =========================================================
   TRIVEEXA FINCORP
   APPLY NOW PAGE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:#08141e;
    color: #14213d;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.tx-apply-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 90% 5%,
            rgba(27, 102, 255, 0.07),
            transparent 25%),
        #08141e;
}


/* =========================================================
   HEADER
   ========================================================= */

.tx-apply-header {
    height: 82px;
    padding: 0 6%;
    background: #08141e;
    border-bottom: 1px solid #e8ecf3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


.tx-brand-mark {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #0c2d57,
            #1769e8);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(18, 82, 180, 0.2);
}


.tx-brand-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0d2a50;
}


.tx-brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: #6d7b91;
    margin-top: 1px;
}


.tx-secure {
    display: flex;
    align-items: center;
    gap: 10px;
}


.tx-lock {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #eef5ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}


.tx-secure strong {
    display: block;
    font-size: 12px;
    color: #263b59;
}


.tx-secure small {
    display: block;
    color: #8290a4;
    font-size: 10px;
    margin-top: 2px;
}


/* =========================================================
   MAIN
   ========================================================= */

.tx-apply-main {
    width: 90%;
    max-width: 1450px;

    margin: 35px auto;

    min-height: calc(100vh - 180px);

    display: grid;

    grid-template-columns:
        34% 66%;

    border-radius: 24px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(17, 39, 72, 0.09);
}


/* =========================================================
   LEFT INFORMATION PANEL
   ========================================================= */

.tx-info-panel {
    position: relative;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(50, 132, 255, 0.28),
            transparent 28%),
        linear-gradient(145deg,
            #071c38,
            #0b315f 55%,
            #0b3e79);

    color: #ffffff;

    overflow: hidden;
}


.tx-info-panel::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    right: -150px;
    bottom: -100px;
}


.tx-info-content {
    position: relative;
    z-index: 2;

    padding: 55px 45px;
}


.tx-small-label {
    font-size: 10px;

    letter-spacing: 2.5px;

    color: #79b1ff;

    font-weight: 700;
}


.tx-info-content h1 {
    font-size: clamp(35px, 3.2vw, 56px);

    line-height: 1.05;

    margin-top: 18px;

    letter-spacing: -2px;
}


.tx-info-content h1 span {
    display: block;

    background:
        linear-gradient(90deg,
            #6eafff,
            #ffffff);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.tx-info-content>p {
    margin-top: 22px;

    color: #b9c9dc;

    font-size: 14px;

    line-height: 1.8;

    max-width: 450px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.tx-benefits {
    margin-top: 40px;

    display: grid;

    gap: 24px;
}


.tx-benefit {
    display: flex;

    gap: 14px;
}


.tx-benefit-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(80, 154, 255, 0.18);

    border: 1px solid rgba(112, 177, 255, 0.3);

    color: #80baff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;
}


.tx-benefit strong {
    display: block;

    font-size: 13px;

    color: #ffffff;
}


.tx-benefit p {
    font-size: 11px;

    color: #9db2ca;

    margin-top: 5px;

    line-height: 1.5;
}


/* =========================================================
   HELP BOX
   ========================================================= */

.tx-help-box {
    margin-top: 42px;

    padding: 16px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.09);

    display: flex;

    gap: 12px;
}


.tx-help-icon {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8bc0ff;

    font-weight: 700;
}


.tx-help-box strong {
    font-size: 12px;
}


.tx-help-box p {
    font-size: 10px;

    color: #9db2ca;

    line-height: 1.5;

    margin-top: 4px;
}


/* =========================================================
   FORM PANEL
   ========================================================= */

.tx-form-panel {
    background: #ffffff;
}


.tx-form-container {
    padding: 45px 55px;

    max-width: 950px;

    margin: auto;
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.tx-form-heading {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.tx-step-label {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;

    color: #397be3;
}


.tx-form-heading h2 {
    font-size: 28px;

    color: #10294a;

    margin-top: 7px;

    letter-spacing: -0.8px;
}


.tx-step-count {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #edf4ff;

    color: #1768db;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.tx-progress {
    margin-top: 28px;
}


.tx-progress-track {
    width: 100%;

    height: 5px;

    background: #edf0f5;

    border-radius: 10px;

    overflow: hidden;
}


.tx-progress-fill {
    height: 100%;

    width: 25%;

    background:
        linear-gradient(90deg,
            #1557b8,
            #3993ff);

    border-radius: 10px;

    transition: width 0.4s ease;
}


.tx-progress-labels {
    display: flex;

    justify-content: space-between;

    margin-top: 9px;

    font-size: 9px;

    color: #9aa7b9;
}


.tx-progress-labels .active {
    color: #266dd1;

    font-weight: 700;
}


/* =========================================================
   STEP
   ========================================================= */

.tx-step {
    display: none;

    animation: txFadeIn 0.35s ease;
}


.tx-step.active {
    display: block;
}


@keyframes txFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.tx-section-title {
    margin-top: 34px;

    margin-bottom: 25px;
}


.tx-section-title h3 {
    font-size: 17px;

    color: #142c4b;
}


.tx-section-title p {
    font-size: 11px;

    color: #8b98aa;

    margin-top: 6px;
}


/* =========================================================
   LOAN CARDS
   ========================================================= */

.tx-loan-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}


.tx-loan-card {
    border: 1px solid #e6eaf0;

    background: #ffffff;

    padding: 17px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 13px;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border 0.2s ease,
        box-shadow 0.2s ease;

    font-family: inherit;
}


.tx-loan-card:hover {
    transform: translateY(-2px);

    border-color: #75aaf2;

    box-shadow:
        0 8px 25px rgba(37, 103, 190, 0.09);
}


.tx-loan-card.selected {
    border-color: #2c79e6;

    background: #f3f8ff;

    box-shadow:
        0 0 0 2px rgba(44, 121, 230, 0.08);
}


.tx-loan-icon {
    width: 42px;
    height: 42px;

    border-radius: 11px;

    background: #eef5ff;

    color: #236dcc;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    flex-shrink: 0;
}


.tx-loan-card strong {
    display: block;

    color: #18304f;

    font-size: 12px;
}


.tx-loan-card span {
    display: block;

    color: #8c99aa;

    font-size: 9px;

    margin-top: 4px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.tx-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px 15px;
}


.tx-input-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.tx-input-group.full {
    grid-column: 1 / -1;
}


.tx-input-group label {
    font-size: 10px;

    color: #44556c;

    font-weight: 700;
}


.tx-input-group input,
.tx-input-group select,
.tx-input-group textarea {

    width: 100%;

    border: 1px solid #dfe5ed;

    background: #fbfcfe;

    border-radius: 9px;

    padding: 13px 13px;

    font-family: inherit;

    font-size: 11px;

    color: #1b3555;

    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}


.tx-input-group input:focus,
.tx-input-group select:focus,
.tx-input-group textarea:focus {

    border-color: #4389ed;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(67, 137, 237, 0.08);
}


.tx-input-group textarea {
    resize: vertical;

    min-height: 95px;
}


.tx-input-group input::placeholder,
.tx-input-group textarea::placeholder {
    color: #adb7c5;
}


/* =========================================================
   MOBILE / MONEY INPUT
   ========================================================= */

.tx-mobile-input,
.tx-money-input {
    display: flex;

    align-items: center;

    border: 1px solid #dfe5ed;

    background: #fbfcfe;

    border-radius: 9px;

    overflow: hidden;
}


.tx-mobile-input span,
.tx-money-input span {
    padding-left: 13px;

    font-size: 11px;

    color: #6c7a8e;

    font-weight: 600;
}


.tx-mobile-input input,
.tx-money-input input {
    border: 0;

    background: transparent;

    box-shadow: none;

    border-radius: 0;
}


.tx-mobile-input:focus-within,
.tx-money-input:focus-within {
    border-color: #4389ed;

    box-shadow:
        0 0 0 3px rgba(67, 137, 237, 0.08);

    background: #ffffff;
}


/* =========================================================
   UPLOAD
   ========================================================= */

.tx-upload-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.tx-upload-box {
    position: relative;
}


.tx-upload-box input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.tx-upload-box label {
    min-height: 155px;

    border: 1.5px dashed #cbd7e6;

    border-radius: 13px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    cursor: pointer;

    background: #fbfcfe;

    transition: all 0.2s ease;
}


.tx-upload-box label:hover {
    border-color: #4b8ce8;

    background: #f5f9ff;
}


.tx-upload-box.uploaded label {
    border-color: #37a56a;

    background: #f2fbf6;
}


.tx-upload-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #edf4ff;

    color: #2875d8;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    margin-bottom: 10px;
}


.tx-upload-box strong {
    font-size: 11px;

    color: #263c59;
}


.tx-upload-box small {
    font-size: 9px;

    color: #99a6b7;

    margin-top: 5px;
}


.tx-upload-button {
    margin-top: 10px;

    font-size: 9px;

    font-weight: 700;

    color: #286fce;
}


/* =========================================================
   CONSENT
   ========================================================= */

.tx-consent {
    margin-top: 22px;

    padding: 14px;

    border-radius: 10px;

    background: #f7f9fc;

    border: 1px solid #e7ebf1;
}


.tx-consent label {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    cursor: pointer;
}


.tx-consent input {
    margin-top: 2px;

    accent-color: #236fd0;
}


.tx-consent span {
    color: #6e7d91;

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.tx-form-actions {
    margin-top: 32px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.tx-back-btn,
.tx-next-btn {

    border: 0;

    border-radius: 9px;

    padding: 13px 22px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}


.tx-back-btn {
    color: #66758a;

    background: transparent;
}


.tx-back-btn:hover {
    background: #f2f5f9;

    color: #273c58;
}


.tx-next-btn {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #1556b5,
            #287fe5);

    box-shadow:
        0 8px 18px rgba(35, 108, 205, 0.2);

    min-width: 125px;
}


.tx-next-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(35, 108, 205, 0.27);
}


.tx-next-btn span {
    margin-left: 10px;
}


/* =========================================================
   SUCCESS SCREEN
   ========================================================= */

.tx-success {
    display: none;

    text-align: center;

    padding: 55px 20px 20px;

    animation: txFadeIn 0.5s ease;
}


.tx-success.show {
    display: block;
}


.tx-success-icon {
    width: 76px;
    height: 76px;

    margin: auto;

    border-radius: 50%;

    background: #eaf9f0;

    color: #28a264;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    font-weight: 700;
}


.tx-success-label {
    display: block;

    margin-top: 22px;

    color: #38a16b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.tx-success h2 {
    margin-top: 9px;

    font-size: 26px;

    color: #16304f;
}


.tx-success>p {
    max-width: 470px;

    margin: 13px auto;

    color: #8491a3;

    font-size: 11px;

    line-height: 1.7;
}


.tx-application-id {
    width: 240px;

    margin: 25px auto;

    padding: 15px;

    border-radius: 11px;

    background: #f6f9fd;

    border: 1px solid #e5eaf1;
}


.tx-application-id span {
    display: block;

    font-size: 8px;

    color: #8897aa;

    letter-spacing: 1.5px;
}


.tx-application-id strong {
    display: block;

    margin-top: 5px;

    font-size: 17px;

    color: #1766c8;

    letter-spacing: 1px;
}


.tx-home-button {
    border: 0;

    background: #123f76;

    color: #ffffff;

    padding: 12px 25px;

    border-radius: 9px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   FOOTER
   ========================================================= */

.tx-apply-footer {
    width: 90%;

    max-width: 1450px;

    margin: 0 auto 25px;

    display: flex;

    justify-content: space-between;

    color: #9aa6b6;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .tx-apply-main {
        grid-template-columns: 1fr;

    }

    .tx-info-panel {
        display: none;
    }

    .tx-form-container {
        padding: 40px;
    }

}


@media (max-width: 650px) {

    .tx-apply-header {
        padding: 0 20px;
    }

    .tx-secure {
        display: none;
    }

    .tx-apply-main {
        width: 94%;

        margin: 18px auto;

        border-radius: 17px;
    }

    .tx-form-container {
        padding: 28px 20px;
    }

    .tx-form-heading h2 {
        font-size: 22px;
    }

    .tx-loan-grid,
    .tx-form-grid,
    .tx-upload-grid {
        grid-template-columns: 1fr;
    }

    .tx-input-group.full {
        grid-column: auto;
    }

    .tx-progress-labels {
        font-size: 8px;
    }

    .tx-apply-footer {
        width: 94%;

        flex-direction: column;

        gap: 7px;

        text-align: center;
    }

}

/* =========================================================
   TRIVEEXA FINCORP
   APPLY NOW PAGE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f5f7fb;
    color: #14213d;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.tx-apply-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 90% 5%,
            rgba(27, 102, 255, 0.07),
            transparent 25%),
        #f5f7fb;
}


/* =========================================================
   HEADER
   ========================================================= */

.tx-apply-header {
    height: 82px;
    padding: 0 6%;
    background: #ffffff;
    border-bottom: 1px solid #e8ecf3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


.tx-brand-mark {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #0c2d57,
            #1769e8);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(18, 82, 180, 0.2);
}


.tx-brand-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0d2a50;
}


.tx-brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: #6d7b91;
    margin-top: 1px;
}


.tx-secure {
    display: flex;
    align-items: center;
    gap: 10px;
}


.tx-lock {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #eef5ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}


.tx-secure strong {
    display: block;
    font-size: 12px;
    color: #263b59;
}


.tx-secure small {
    display: block;
    color: #8290a4;
    font-size: 10px;
    margin-top: 2px;
}


/* =========================================================
   MAIN
   ========================================================= */

.tx-apply-main {
    width: 90%;
    max-width: 1450px;

    margin: 35px auto;

    min-height: calc(100vh - 180px);

    display: grid;

    grid-template-columns:
        34% 66%;

    border-radius: 24px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(17, 39, 72, 0.09);
}


/* =========================================================
   LEFT INFORMATION PANEL
   ========================================================= */

.tx-info-panel {
    position: relative;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(50, 132, 255, 0.28),
            transparent 28%),
        linear-gradient(145deg,
            #071c38,
            #0b315f 55%,
            #0b3e79);

    color: #ffffff;

    overflow: hidden;
}


.tx-info-panel::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    right: -150px;
    bottom: -100px;
}


.tx-info-content {
    position: relative;
    z-index: 2;

    padding: 55px 45px;
}


.tx-small-label {
    font-size: 10px;

    letter-spacing: 2.5px;

    color: #79b1ff;

    font-weight: 700;
}


.tx-info-content h1 {
    font-size: clamp(35px, 3.2vw, 56px);

    line-height: 1.05;

    margin-top: 18px;

    letter-spacing: -2px;
}


.tx-info-content h1 span {
    display: block;

    background:
        linear-gradient(90deg,
            #6eafff,
            #ffffff);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.tx-info-content>p {
    margin-top: 22px;

    color: #b9c9dc;

    font-size: 14px;

    line-height: 1.8;

    max-width: 450px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.tx-benefits {
    margin-top: 40px;

    display: grid;

    gap: 24px;
}


.tx-benefit {
    display: flex;

    gap: 14px;
}


.tx-benefit-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(80, 154, 255, 0.18);

    border: 1px solid rgba(112, 177, 255, 0.3);

    color: #80baff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;
}


.tx-benefit strong {
    display: block;

    font-size: 13px;

    color: #ffffff;
}


.tx-benefit p {
    font-size: 11px;

    color: #9db2ca;

    margin-top: 5px;

    line-height: 1.5;
}


/* =========================================================
   HELP BOX
   ========================================================= */

.tx-help-box {
    margin-top: 42px;

    padding: 16px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.09);

    display: flex;

    gap: 12px;
}


.tx-help-icon {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8bc0ff;

    font-weight: 700;
}


.tx-help-box strong {
    font-size: 12px;
}


.tx-help-box p {
    font-size: 10px;

    color: #9db2ca;

    line-height: 1.5;

    margin-top: 4px;
}


/* =========================================================
   FORM PANEL
   ========================================================= */

.tx-form-panel {
    background: #ffffff;
}


.tx-form-container {
    padding: 45px 55px;

    max-width: 950px;

    margin: auto;
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.tx-form-heading {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.tx-step-label {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;

    color: #397be3;
}


.tx-form-heading h2 {
    font-size: 28px;

    color: #10294a;

    margin-top: 7px;

    letter-spacing: -0.8px;
}


.tx-step-count {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #edf4ff;

    color: #1768db;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.tx-progress {
    margin-top: 28px;
}


.tx-progress-track {
    width: 100%;

    height: 5px;

    background: #edf0f5;

    border-radius: 10px;

    overflow: hidden;
}


.tx-progress-fill {
    height: 100%;

    width: 25%;

    background:
        linear-gradient(90deg,
            #1557b8,
            #3993ff);

    border-radius: 10px;

    transition: width 0.4s ease;
}


.tx-progress-labels {
    display: flex;

    justify-content: space-between;

    margin-top: 9px;

    font-size: 9px;

    color: #9aa7b9;
}


.tx-progress-labels .active {
    color: #266dd1;

    font-weight: 700;
}


/* =========================================================
   STEP
   ========================================================= */

.tx-step {
    display: none;

    animation: txFadeIn 0.35s ease;
}


.tx-step.active {
    display: block;
}


@keyframes txFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.tx-section-title {
    margin-top: 34px;

    margin-bottom: 25px;
}


.tx-section-title h3 {
    font-size: 17px;

    color: #142c4b;
}


.tx-section-title p {
    font-size: 11px;

    color: #8b98aa;

    margin-top: 6px;
}


/* =========================================================
   LOAN CARDS
   ========================================================= */

.tx-loan-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}


.tx-loan-card {
    border: 1px solid #e6eaf0;

    background: #ffffff;

    padding: 17px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 13px;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border 0.2s ease,
        box-shadow 0.2s ease;

    font-family: inherit;
}


.tx-loan-card:hover {
    transform: translateY(-2px);

    border-color: #75aaf2;

    box-shadow:
        0 8px 25px rgba(37, 103, 190, 0.09);
}


.tx-loan-card.selected {
    border-color: #2c79e6;

    background: #f3f8ff;

    box-shadow:
        0 0 0 2px rgba(44, 121, 230, 0.08);
}


.tx-loan-icon {
    width: 42px;
    height: 42px;

    border-radius: 11px;

    background: #eef5ff;

    color: #236dcc;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    flex-shrink: 0;
}


.tx-loan-card strong {
    display: block;

    color: #18304f;

    font-size: 12px;
}


.tx-loan-card span {
    display: block;

    color: #8c99aa;

    font-size: 9px;

    margin-top: 4px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.tx-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px 15px;
}


.tx-input-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.tx-input-group.full {
    grid-column: 1 / -1;
}


.tx-input-group label {
    font-size: 10px;

    color: #44556c;

    font-weight: 700;
}


.tx-input-group input,
.tx-input-group select,
.tx-input-group textarea {

    width: 100%;

    border: 1px solid #dfe5ed;

    background: #fbfcfe;

    border-radius: 9px;

    padding: 13px 13px;

    font-family: inherit;

    font-size: 11px;

    color: #1b3555;

    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}


.tx-input-group input:focus,
.tx-input-group select:focus,
.tx-input-group textarea:focus {

    border-color: #4389ed;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(67, 137, 237, 0.08);
}


.tx-input-group textarea {
    resize: vertical;

    min-height: 95px;
}


.tx-input-group input::placeholder,
.tx-input-group textarea::placeholder {
    color: #adb7c5;
}


/* =========================================================
   MOBILE / MONEY INPUT
   ========================================================= */

.tx-mobile-input,
.tx-money-input {
    display: flex;

    align-items: center;

    border: 1px solid #dfe5ed;

    background: #fbfcfe;

    border-radius: 9px;

    overflow: hidden;
}


.tx-mobile-input span,
.tx-money-input span {
    padding-left: 13px;

    font-size: 11px;

    color: #6c7a8e;

    font-weight: 600;
}


.tx-mobile-input input,
.tx-money-input input {
    border: 0;

    background: transparent;

    box-shadow: none;

    border-radius: 0;
}


.tx-mobile-input:focus-within,
.tx-money-input:focus-within {
    border-color: #4389ed;

    box-shadow:
        0 0 0 3px rgba(67, 137, 237, 0.08);

    background: #ffffff;
}


/* =========================================================
   UPLOAD
   ========================================================= */

.tx-upload-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.tx-upload-box {
    position: relative;
}


.tx-upload-box input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.tx-upload-box label {
    min-height: 155px;

    border: 1.5px dashed #cbd7e6;

    border-radius: 13px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    cursor: pointer;

    background: #fbfcfe;

    transition: all 0.2s ease;
}


.tx-upload-box label:hover {
    border-color: #4b8ce8;

    background: #f5f9ff;
}


.tx-upload-box.uploaded label {
    border-color: #37a56a;

    background: #f2fbf6;
}


.tx-upload-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #edf4ff;

    color: #2875d8;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    margin-bottom: 10px;
}


.tx-upload-box strong {
    font-size: 11px;

    color: #263c59;
}


.tx-upload-box small {
    font-size: 9px;

    color: #99a6b7;

    margin-top: 5px;
}


.tx-upload-button {
    margin-top: 10px;

    font-size: 9px;

    font-weight: 700;

    color: #286fce;
}


/* =========================================================
   CONSENT
   ========================================================= */

.tx-consent {
    margin-top: 22px;

    padding: 14px;

    border-radius: 10px;

    background: #f7f9fc;

    border: 1px solid #e7ebf1;
}


.tx-consent label {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    cursor: pointer;
}


.tx-consent input {
    margin-top: 2px;

    accent-color: #236fd0;
}


.tx-consent span {
    color: #6e7d91;

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.tx-form-actions {
    margin-top: 32px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.tx-back-btn,
.tx-next-btn {

    border: 0;

    border-radius: 9px;

    padding: 13px 22px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}


.tx-back-btn {
    color: #66758a;

    background: transparent;
}


.tx-back-btn:hover {
    background: #f2f5f9;

    color: #273c58;
}


.tx-next-btn {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #1556b5,
            #287fe5);

    box-shadow:
        0 8px 18px rgba(35, 108, 205, 0.2);

    min-width: 125px;
}


.tx-next-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(35, 108, 205, 0.27);
}


.tx-next-btn span {
    margin-left: 10px;
}


/* =========================================================
   SUCCESS SCREEN
   ========================================================= */

.tx-success {
    display: none;

    text-align: center;

    padding: 55px 20px 20px;

    animation: txFadeIn 0.5s ease;
}


.tx-success.show {
    display: block;
}


.tx-success-icon {
    width: 76px;
    height: 76px;

    margin: auto;

    border-radius: 50%;

    background: #eaf9f0;

    color: #28a264;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    font-weight: 700;
}


.tx-success-label {
    display: block;

    margin-top: 22px;

    color: #38a16b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.tx-success h2 {
    margin-top: 9px;

    font-size: 26px;

    color: #16304f;
}


.tx-success>p {
    max-width: 470px;

    margin: 13px auto;

    color: #8491a3;

    font-size: 11px;

    line-height: 1.7;
}


.tx-application-id {
    width: 240px;

    margin: 25px auto;

    padding: 15px;

    border-radius: 11px;

    background: #f6f9fd;

    border: 1px solid #e5eaf1;
}


.tx-application-id span {
    display: block;

    font-size: 8px;

    color: #8897aa;

    letter-spacing: 1.5px;
}


.tx-application-id strong {
    display: block;

    margin-top: 5px;

    font-size: 17px;

    color: #1766c8;

    letter-spacing: 1px;
}


.tx-home-button {
    border: 0;

    background: #123f76;

    color: #ffffff;

    padding: 12px 25px;

    border-radius: 9px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   FOOTER
   ========================================================= */

.tx-apply-footer {
    width: 90%;

    max-width: 1450px;

    margin: 0 auto 25px;

    display: flex;

    justify-content: space-between;

    color: #9aa6b6;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .tx-apply-main {
        grid-template-columns: 1fr;

    }

    .tx-info-panel {
        display: none;
    }

    .tx-form-container {
        padding: 40px;
    }

}


@media (max-width: 650px) {

    .tx-apply-header {
        padding: 0 20px;
    }

    .tx-secure {
        display: none;
    }

    .tx-apply-main {
        width: 94%;

        margin: 18px auto;

        border-radius: 17px;
    }

    .tx-form-container {
        padding: 28px 20px;
    }

    .tx-form-heading h2 {
        font-size: 22px;
    }

    .tx-loan-grid,
    .tx-form-grid,
    .tx-upload-grid {
        grid-template-columns: 1fr;
    }

    .tx-input-group.full {
        grid-column: auto;
    }

    .tx-progress-labels {
        font-size: 8px;
    }

    .tx-apply-footer {
        width: 94%;

        flex-direction: column;

        gap: 7px;

        text-align: center;
    }

}