        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        body {
            height: 100vh;
            display: flex;
        }

        /* Left Branding */
        .left-side {
            flex: 1;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
            flex-direction: column;
        }

        .left-side h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .left-side p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 400px;
        }

        /* Right Login */
        .right-side {
            flex: 1;
            background: #f4f6f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-box {
            width: 100%;
            max-width: 380px;
        }

        .login-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .form-control {
            border-radius: 0;
            border: none;
            border-bottom: 2px solid #ccc;
            background: transparent;
        }

        .form-control:focus {
            border-bottom: 2px solid #2a5298;
            box-shadow: none;
        }

        .btn-login {
            background: #111;
            color: #fff;
            border-radius: 6px;
            padding: 10px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-login:hover {
            background: #2a5298;
        }

        .google-btn {
            background: #fff;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 6px;
            margin-top: 10px;
        }

        .google-btn:hover {
            background: #f1f1f1;
        }

        @media (max-width: 992px) {
            body {
                flex-direction: column;
            }
            .left-side {
                display: none;
            }
        }