*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#edf2f7;
    color:#1e293b;
    overflow-x:hidden;
}

/* WRAPPER */

.portal-wrapper{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:18px;
}

/* CONTAINER */

.portal-container{
    width:100%;
    max-width:1320px;

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:
        0 20px 50px rgba(2,6,23,0.10);
}

/* ROW */

.portal-container .row{
    min-height:650px;
}

/* LEFT PANEL */

.left-panel{
    position:relative;

    height:100%;

    background:
        linear-gradient(
            rgba(0,20,60,0.45),
            rgba(0,20,60,0.55)
        ),
        url('../images/bg.png');

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,22,65,0.78),
            rgba(0,45,110,0.82)
        );

    backdrop-filter:blur(1px);
}

/* LEFT CONTENT */

.left-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:420px;

    padding:30px;

    color:white;

    text-align:center;

    text-shadow:
        0 4px 20px rgba(0,0,0,0.25);
}

/* LOGO */

.portal-logo{
    width:145px;
    margin-bottom:22px;
}

/* TITLE */

.left-content h1{
    font-size:2.2rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:12px;
}

.left-content h3{
    font-size:1rem;
    font-weight:500;
    line-height:1.5;
    margin-bottom:16px;
}

/* DESCRIPTION */

.left-content p{
    font-size:.88rem;
    line-height:1.7;
    opacity:.92;
}

/* FEATURES */

.features{
    margin-top:28px;

    display:flex;
    justify-content:space-between;

    gap:12px;
}

.feature-item{
    flex:1;
    text-align:center;
}

.feature-item i{
    width:40px;
    height:40px;

    border-radius:12px;

    background:rgba(255,255,255,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 8px;

    font-size:.85rem;
}

.feature-item span{
    display:block;

    font-size:.74rem;

    line-height:1.4;
}

/* RIGHT PANEL */

.right-panel{
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fbff
        );

    height:100%;

    padding:28px 30px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* TITLE */

.portal-title{
    text-align:center;
}

.portal-title h2{
    font-size:1.6rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:6px;
    letter-spacing:-0.4px;
}

.portal-title p{
    color:#64748b;
    font-size:.85rem;
}

/* DESCRIPTION */

.portal-description{
    margin-top:14px;

    text-align:center;

    font-size:.85rem;

    line-height:1.7;

    color:#64748b;

    max-width:500px;

    margin-left:auto;
    margin-right:auto;
}

/* PAYMENT WRAPPER */

.payment-card-wrapper{
    margin-top:20px;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:16px;
}

/* PAYMENT CARD */

.info-card{
    background:white;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:20px;

    display:flex;
    align-items:flex-start;

    gap:16px;

    box-shadow:
        0 4px 12px rgba(15,23,42,0.04);
}

/* ICON */

.card-icon{
    width:54px;
    height:54px;

    border-radius:15px;

    background:#edf4ff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#003f88;

    font-size:1.1rem;

    flex-shrink:0;
}

/* CARD TEXT */

.info-card h5{
    font-size:.82rem;

    font-weight:600;

    color:#003f88;

    margin-bottom:6px;
}

.info-card h3{
    font-size:1.7rem;

    font-weight:700;

    margin-bottom:10px;

    color:#0f172a;
}

/* PAYMENT DETAILS */

.payment-details p{
    margin-bottom:4px;

    font-size:.8rem;

    color:#475569;
}

/* PAYMENT STATUS CARD */

.payment-status-card{
    background:white;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:20px;

    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:center;

    box-shadow:
        0 4px 12px rgba(15,23,42,0.04);
}

/* STATUS ICON */

.status-icon{
    width:58px;
    height:58px;

    border-radius:16px;

    background:#fff7ed;

    color:#f59e0b;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 14px;

    font-size:1.2rem;
}

/* VERIFIED */

.status-icon.verified{
    background:#dcfce7;
    color:#16a34a;
}

/* STATUS TEXT */

.payment-status-card h4{
    font-size:1rem;
    font-weight:700;

    margin-bottom:8px;
}

.payment-status-card p{
    font-size:.8rem;
    color:#64748b;

    line-height:1.6;

    margin-bottom:18px;
}

/* BUTTON */

.confirm-btn{
    height:44px;

    border:none;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #003f88,
            #001f5c
        );

    color:white;

    font-size:.82rem;
    font-weight:600;

    transition:.3s ease;
}

.confirm-btn:hover{
    transform:translateY(-2px);
}

/* VERIFIED BUTTON */

.verified-btn{
    background:#16a34a !important;
}

/* GUIDELINES */

.guidelines{
    margin-top:22px;
}

.guidelines h4{
    font-size:.88rem;
    font-weight:700;
    margin-bottom:14px;
}

.guideline-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.guideline-item{
    display:flex;
    align-items:flex-start;

    gap:8px;

    padding:12px;

    border:1px solid #e2e8f0;

    border-radius:12px;

    background:white;
}

.guideline-item i{
    color:#22c55e;
    margin-top:2px;
    font-size:.82rem;
}

.guideline-item span{
    font-size:.78rem;
    line-height:1.5;
    color:#475569;
}

/* BENEFITS */

.benefits{
    margin-top:22px;
}

.benefits h4{
    font-size:.88rem;
    font-weight:700;
    margin-bottom:14px;
}

.benefit-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;
}

.benefit-item{
    text-align:center;
}

.benefit-item i{
    width:38px;
    height:38px;

    border-radius:12px;

    background:#edf4ff;

    color:#003f88;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 8px;

    font-size:.85rem;
}

.benefit-item span{
    display:block;

    font-size:.72rem;

    color:#475569;

    line-height:1.4;
}

/* BUTTONS */

.portal-buttons{
    margin-top:24px;

    display:flex;

    gap:12px;
}

.portal-buttons .btn{
    flex:1;

    height:46px;

    border-radius:12px;

    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.82rem;
}

/* LEARN BUTTON */

.learn-btn{
    border:1px solid #cbd5e1;

    background:white;

    color:#0f172a;
}

/* REGISTER BUTTON */

.register-btn{
    background:
        linear-gradient(
            135deg,
            #003f88,
            #001f5c
        );

    border:none;

    color:white;
}

.register-btn:hover{
    color:white;
}

/* FOOTER */

.portal-footer{
    margin-top:20px;

    text-align:center;

    font-size:.72rem;

    color:#94a3b8;
}

/* RESPONSIVE */

@media(max-width:991px){

    .portal-container .row{
        min-height:auto;
    }

    .left-panel{
        min-height:400px;
    }

    .right-panel{
        padding:24px 20px;
    }

    .payment-card-wrapper{
        grid-template-columns:1fr;
    }

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .portal-wrapper{
        padding:10px;
    }

    .left-content{
        padding:26px 18px;
    }

    .left-content h1{
        font-size:1.9rem;
    }

    .left-content h3{
        font-size:.95rem;
    }

    .features{
        flex-direction:column;
    }

    .portal-buttons{
        flex-direction:column;
    }

    .guideline-grid{
        grid-template-columns:1fr;
    }

    .benefit-grid{
        grid-template-columns:1fr 1fr;
    }

    .portal-title h2{
        font-size:1.35rem;
    }

    .info-card{
        flex-direction:column;
    }

}
/* PAYMENT WELCOME */

.payment-welcome{
    margin-top:18px;

    padding-top:16px;

    border-top:1px solid #e2e8f0;

    font-size:.78rem;

    line-height:1.8;

    color:#64748b;

    max-width:420px;

    text-align:justify;
}
.continue-note{
    margin-top:14px;

    padding:12px 14px;

    background:#eff6ff;

    border:1px solid #bfdbfe;

    border-radius:12px;

    color:#1d4ed8;

    font-size:.78rem;

    line-height:1.6;

    text-align:center;

    font-weight:500;
}
.continue-note{
    display:none;

    margin-top:14px;

    padding:12px 14px;

    background:#eff6ff;

    border:1px solid #bfdbfe;

    border-radius:12px;

    color:#1d4ed8;

    font-size:.78rem;

    line-height:1.6;

    text-align:center;

    font-weight:500;
}
