        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0; /* Ensure no default margins */
            display: flex;
            justify-content: center; /* Horizontally centers content */
            align-items: center; /* Vertically centers content */
            position: relative;
            min-height: 100vh; /
        }

        .container-fluid {
            display: flex;
            max-width: 900px;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            padding-left: 0;
        }

        .login-section {
            flex: 1;
            background: #252a37 url('image/bg.jpg') no-repeat;
            background-size: cover;
            padding: 40px;
            color: white;
        }

        .login-section h2 {
            margin-bottom: 30px;
            font-size: 28px;
        }

        .form-control {
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 5px;
            padding: 15px;
            font-size: 14px;
        }

        .login-btn {
            background-color: #00aaff;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            width: 100%;
            margin-top: 15px;
            font-size: 16px;
        }

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

        .helper-text {
            margin-top: 20px;
            font-size: 14px;
        }

        .helper-text a {
            color: #00aaff;
            text-decoration: none;
        }

        .helper-text a:hover {
            text-decoration: underline;
        }

        .brand-section {
            flex: 1;
            background-color: white;
            /* display: flex; */
            justify-content: center;
            align-items: center;
        }

        .brand-text {
            font-size: 36px;
            font-weight: bold;
            color: #00aaff;
        }
        .Hr{
            color: #00aaff !important;
            font-size: 50px; 
        }
        .brand-text span {
            font-size: 70px;
            color: #333;
        }

        .brand-section p {
            font-size: 16px;
            color: #555;
            margin-top: 10px;
        }

        .activate-text {
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 12px;
            color: #ccc;
        }
        a{
            text-decoration: none;
        }
        .form-control{
            padding: 5px;
        }


        @media (max-width: 575px) {
            body {
                padding: 15px;
                margin: 0;
            }

            .container-fluid {
                /* flex-direction: column; */
                width: 100%;
                /* padding:0; */
                /* box-shadow: none; */
                border-radius: 10px;
            }
            .login-section{
                flex: 100%; /* Make sure it takes full width in mobile */
            }
            .brand-section{
                width: 100%;
                flex: 100%; /* Make sure it takes full width in mobile */
            }
        }