﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f4f7fc;
}

form {
    min-height: 100vh;
}

.login-page {
    display: flex;
    min-height: 100vh;
}*/

/* Left */

/*.left-panel {
    width: 55%;
    background: linear-gradient(135deg,#0d6efd,#084298);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.portal-info {
    text-align: center;
}

.portal-logo {
    width: 120px;
    margin-bottom: 25px;
}

.portal-info h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portal-info p {
    font-size: 18px;
    opacity: .9;
}*/

/* Right */

/*.right-panel {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f7fc;
}

.login-card {
    width: 430px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.login-card h2 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-title {
    color: #777;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.custom-input {
    height: 48px;
    border-radius: 8px;
}

.remember-box {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: .3s;
}

.btn-login:hover {
    background: #084298;
}

.alert-msg {
    display: block;
    margin-bottom: 15px;
    color: red;
    font-weight: 600;
}*/

/* Responsive */

/*@media(max-width:991px) {

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
    }

    .login-card {
        width: 95%;
    }
}*/



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #eef3f9;
}

form {
    min-height: 100vh;
}

.login-page {
    display: flex;
    min-height: 100vh;
}

/* ================= LEFT PANEL ================= */

.left-panel {
    width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-image: url('images/government-bg.png');
    /*background: url('../images/government-bg.png') center center;*/
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

    /* Blue Overlay */

    .left-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,53,128,.78);
    }

/* Content */

.portal-info {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 520px;
}

.portal-logo {
    width: 120px;
    margin-bottom: 25px;
    background: rgba(255,255,255,.15);
    padding: 12px;
    border-radius: 50%;
}

.portal-info h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.portal-info p {
    color: #e8f1ff;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Feature List */

.features {
    margin-top: 35px;
    text-align: left;
    display: inline-block;
}

    .features div {
        font-size: 17px;
        color: #fff;
        margin-bottom: 15px;
    }

/* ================= RIGHT PANEL ================= */

.right-panel {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#f5f8fc,#edf3fb);
    padding: 30px;
}

/* Login Card */

.login-card {
    width: 430px;
    background: #fff;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

    .login-card h2 {
        color: #0d6efd;
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 32px;
    }

.sub-title {
    color: #777;
    margin-bottom: 30px;
}

/* Form */

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

.custom-input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: .3s;
}

    .custom-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 8px rgba(13,110,253,.25);
    }

/* Remember */

.remember-box {
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button */

.btn-login {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#0d6efd,#084298);
    color: white;
    font-weight: 600;
    font-size: 17px;
    transition: .3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(13,110,253,.35);
    }

/* Alert */

.alert-msg {
    display: block;
    margin-bottom: 18px;
    color: #dc3545;
    font-weight: 600;
}

/* ================= Responsive ================= */

@media(max-width:991px) {

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
    }

    .login-card {
        width: 100%;
        max-width: 430px;
        padding: 35px;
    }
}




