body {
            background: #f4f6f9;
            font-family: Arial, Helvetica, sans-serif;
            color: #2c2c2c;
        }

        .top-header {
            background: #ffffff;
            padding: 18px 0 10px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .logo-section img {
            max-height: 85px;
        }

        .portal-title {
            text-align: right;
        }

        .portal-title h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #1e3c72;
        }

        .portal-title p {
            margin: 0;
            color: #555;
            letter-spacing: 3px;
            font-size: 14px;
            text-transform: uppercase;
        }

        .gradient-line {
            height: 5px;
            background: linear-gradient(
                90deg,
                #00a651,
                #00b5e2,
                #1e3c72
            );
        }

        .main-wrapper {
            padding-top: 30px;
            padding-bottom: 50px;
        }

        .content-box {
            background: #ffffff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e3c72;
        }

        .sub-title {
            font-size: 16px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 18px;
            color: #0d6efd;
        }

        .info-text {
            line-height: 1.4;
            font-size: 14px;
        }

        .process-box {
            border: 1px solid #d7d7d7;
            border-radius: 6px;
            overflow: hidden;
        }

        .process-item {
            padding: 16px 20px;
            border-bottom: 1px solid #e2e2e2;
            font-weight: 600;
            background: #fafafa;
        }

        .process-item.active {
            background: #00a884;
            color: #fff;
        }

        .process-item:last-child {
            border-bottom: none;
        }

        .notice-list li,
        .info-list li {
            margin-bottom: 10px;
            line-height: 1.4;
            font-size: 14px;
        }

        .login-panel {
            background: #ffffff;
            border-radius: 10px;
            padding: 35px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .login-panel h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #1e3c72;
            font-weight: 700;
        }

        .login-panel p {
            color: #666;
            margin-bottom: 25px;
        }

        .form-control,
        .form-select {
            min-height: 48px;
            border-radius: 6px;
        }

        .btn-login {
            width: 100%;
            background: #00a884;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 12px;
            border-radius: 6px;
        }

        .btn-login:hover {
            background: #008b6d;
            color: #fff;
        }

        .btn-register {
            width: 100%;
            background: #1e3c72;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 12px;
            border-radius: 6px;
        }

        .btn-register:hover {
            background: #162c54;
            color: #fff;
        }
        .btn-gos {
            width: 100%;
            background: #d1f3fe;;
            border: none;
            color: #0b6887;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 6px;
            display: flex !important;
            align-items: center;
            justify-content: space-between;
        }

        .btn-gos:hover {
            background: #0b6887;
            color: #fff;
        }
        .btn-gos img {
            max-height: 50px;
            display: block;
            margin-left: auto;
            
        }

        .btn-admin {
            width: 100%;
            background: #ffc107;
            border: none;
            color: #000;
            font-weight: 600;
            padding: 12px;
            border-radius: 6px;
        }

        .btn-admin:hover {
            background: #e0a800;
            color: #000;
        }

        .divider {
            height: 1px;
            background: #e3e3e3;
            margin: 25px 0;
        }

        .helpline-box {
            margin-top: 30px;
            background: #eef7ff;
            border-left: 5px solid #0d6efd;
            padding: 20px;
            border-radius: 6px;
        }

        .helpline-box h5 {
            margin-bottom: 10px;
            font-weight: 700;
        }
        /* APPLICATION PROCESS ACCORDION */

.process-accordion {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
}

.process-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
}

.process-accordion .accordion-item:last-child {
    border-bottom: none;
}

.process-accordion .accordion-button {
    background: #f8f9fa;
    color: #222;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 22px;
    box-shadow: none;
}

.process-accordion .accordion-button:not(.collapsed) {
    background: #00a884;
    color: #fff;
}

.process-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.process-accordion .accordion-body {
    background: #fff;
    padding: 22px;
    font-size: 15px;
    line-height: 1.7;
}

.process-list {
    padding-left: 18px;
    margin-bottom: 15px;
}

.process-list li {
    margin-bottom: 10px;
}
        @media(max-width: 991px) {

            .portal-title {
                text-align: left;
                margin-top: 20px;
            }

            .login-panel {
                margin-top: 25px;
            }

        }
/* FIX CLICK ISSUES */

a,
button,
input,
form,
.login-panel,
.btn,
.btn-login,
.btn-register,.btn-gos,
.btn-admin {

    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;

}

/* prevent overlay issues */

.top-header,
.main-wrapper,
.content-box,
.login-panel {

    position: relative;
    z-index: 1;

}

/* remove accordion overlap */

.accordion,
.accordion-item,
.accordion-button,
.accordion-collapse {

    position: relative;
    z-index: 1;

}

.page-footer p a {
    color: #ffab2d  !important;
    
}
.page-footer {
    background: transparent !important;
    border-top: #e7eef1 1px solid;
    color: #1e3c72;
    
    /* position:fixed !important ; */
    font-size: 12px;
    /* font-weight: 600; */
    margin-top: 5px;
    margin-bottom: 5px;
    z-index: 3 !important;
    text-align: center;
    padding: 12px;
}
.text-left {
    text-align: left !important;
}