/* Reset & basic styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    line-height: 1.6;
    background: #6495ed;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */



.nep-header {
    background: #ffffff;
    color: white;
    /*padding: 1rem 2rem;*/
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nep-header .table {
    border: 0px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
}


.nep-header img {
    width: auto;
    height: 80px;
    transition: height 0.5s linear;
}

.nep-header a,.nep-header a:hover, .nep-header a:focus  {
    text-decoration: none;
    cursor: pointer;
}

.nep-header h2 {
    font-size: 30px;
    font-weight: 600;
    transition: font-size 0.5s linear;
}

/* Navigation */
.navbar-dark-blue {
    background: #004080;

}
.navbar-expand-lg .navbar-collapse{
    justify-content: center;
}

.nav-link {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}
.nav-link:hover, .nav-link:focus{
    color: #ffffff;
    border-bottom: 3px solid #ff9933;
    outline: none;
}
.navbar-nav {
    display: flex;
    justify-content: center;
}

li.nav-item {
    margin: 0 1.2rem;
}

.navbar-toggler {
    background: #ffffff;
}

.nep-content-section p {
    font-size: 20px;
    margin-bottom: 0px;
    background: #ffc107; 
    padding: 10px 2px; 
    color: #000000;
    text-align: center;
}

.btn-primary {
    background: #ffc107;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    margin: 20px auto;
}
.btn-primary:hover {
    background: #e0a800;
    color: #ffffff;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 2rem 2rem;
    background: #6495ed;
    flex-wrap: wrap;
    gap: 2rem;
}
.feature-card {
    background: #e6f0ff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}
.feature-card h3 {
    font-size: 22px;
    color: #004080;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.feature-card p {
    font-size: 1rem;
    color: #333;
}

/* Footer */
footer {
    background: #004080;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1285px) {
    .nep-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 1170px) {
    .nep-header h2 {
        font-size: 24px;
    }
}
@media (max-width: 1115px) {
    .nep-header img {
        height: 60px
    }
    .nep-header h2 {
        font-size: 22px;
    }
}
@media (max-width: 965px) {
    .nep-header img {
        height: 50px
    }
    .nep-header h2 {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .nep-header h2 {
        font-size: 20px;
    }
    .nep-header img {
        height: 50px
    }
}

@media (max-width: 600px) {
    .nep-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .nep-header img {
        height: 40px
    }
    .nep-header h2 {
        font-size: 16px;
    }
}


.captcha-box{
    display:flex;
    gap:10px;
    align-items:center
}
#captchaCanvas{
    border-radius:5px;
    background:linear-gradient(180deg,#ffffff,#f7fcfc);
    border:1px solid #e0efef;
    display:block;
    width: 80%;
    height: 50px;
}

.btn-refresh {
    background: transparent;
    box-shadow: none;
}

.btn-refresh i {
    /*color: #ffffff;*/
}



/*---------------------------------*/
 

.login-container {
    background-color: #004080;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-container h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
}

.login-container .input-field {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
}

.login-container .input-field:focus {
    outline: none;
    border-color: #4CAF50;
}
 

.login-container .forgot-password {
    display: inline-block;
    font-size: 14px;
    color: #00BFFF;
    text-decoration: none;
    margin-top: 10px;
}

.login-container .forgot-password:hover {
    text-decoration: underline;
}
 

/* Mobile responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 30px;
    }

    .login-container h2 {
        font-size: 24px;
    }

    .login-container .input-field {
        font-size: 14px;
    }

    .login-container .login-btn {
        font-size: 16px;
    }
}

/*-----------------------------------*/

