
        :root {
            --primary-blue: #0056b3;
            --secondary-blue: #e7f1ff;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            background-image: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-wrapper {
            display: flex;
            background: var(--white);
            width: 100%;
            max-width: 900px;
            min-height: 550px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* Left Side - Professional Branding */
        .brand-side {
            flex: 1;
            background: var(--primary-blue);
            background: linear-gradient(180deg, #0056b3 0%, #003d80 100%);
            padding: 50px;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-side h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .brand-side p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Right Side - Login Form */
        .form-side {
            flex: 1.2;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-side h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .form-side p {
            color: var(--text-light);
            margin-bottom: 35px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        input {
            width: 100%;
            padding: 12px 12px 12px 45px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            outline: none;
            font-size: 1rem;
            transition: all 0.3s;
        }

        input:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #004494;
        }

        .footer-links {
            margin-top: 30px;
            text-align: center;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--primary-blue);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .login-wrapper {
    display: flex;
    background: var(--white);
    width: 95%; /* 100% ki jagah 95% karein taaki mobile edges par thoda gap rahe */
    max-width: 900px;
    /* baaki code same rahega */
}

     @media (max-width: 768px) {
    /* 1. Blue side ko puri tarah hide karne ke liye */
    .brand-side {
        display: none !important; 
    }

    /* 2. Login wrapper ko mobile screen par fit karne ke liye */
    .login-wrapper {
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        min-height: auto;
        border-radius: 20px;
    }

    /* 3. Form ki padding thodi kam karne ke liye */
    .form-side {
        padding: 40px 25px;
        flex: none;
        width: 100%;
    }
}
