        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
              /* new color scheme */
              :root {
                --primary-start: #4a00e0; /* Deep Purple */
                --primary-end: #8e2de2;   /* Amethyst */
                --secondary-start: #6a11cb; /* Darker Purple */
                --secondary-end: #2575fc;   /* Bright Blue */
                --success-start: #28a745;
                --success-end: #218838;
                --danger-start: #dc3545;
                --danger-end: #c82333;
                --info-start: #17a2b8;
                --info-end: #138496;
                --warning-start: #ffc107;
                --warning-end: #e0a800;
                --dark-start: #343a40;
                --dark-end: #23272b;
            }
        body {
            /* Background Gradient */
            /* background: linear-gradient(to bottom, #010815 20%, #0b2966 90%); */
/* new color  */
            background: linear-gradient(to right, var(--primary-start), var(--primary-end));
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            height: 100vh;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
  

        .bg-gradient-primary {
            background: linear-gradient(to right, var(--primary-start), var(--primary-end));
        }

        .container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .login-container {
            background-color: rgba(255, 255, 255, 0.06);
            background-image: url('https://demovitamap.s3.ap-southeast-1.amazonaws.com/CT-images/login-background-1.jpg'); /* Optional background image */
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 12px 24px rgba(196, 28, 28, 0.25);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 400px;
            width: 100%;
            box-sizing: border-box;
            color: black;
        }
       
        .login-heading {
            /* background: linear-gradient(to right, #F0563B, #a7f3d0); */
            -webkit-background-clip: text;
            /* color: transparent; */
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 25px;
            text-align: center;
            letter-spacing: -1.5px;
        }

        .login-description {
            color: #0f0101;
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            opacity: 0.9;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(206, 24, 24, 0.15);
            border-radius: 8px;
            color: #0c0c0c;
            font-size: 16px;
            padding: 12px 15px;
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .form-control:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: #F0563B;
            outline: none;
            box-shadow: 0 4px 8px rgba(145, 36, 9, 0.389);
        }

        .form-control::placeholder {
            color: rgba(190, 19, 19, 0.6);
            font-size: 16px;
        }

        .btn-login {
            background-color: #F0563B;
            border: none;
            border-radius: 8px;
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            padding: 12px 25px;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-login:hover {
            background-color: #e54e36;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .login-footer {
            margin-top: 30px;
            text-align: center;
            color: rgba(48, 47, 47, 0.8);
            font-size: 14px;
        }

        .login-footer a {
            color: #F0563B;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .login-footer a:hover {
            color: #0c0c0c;
            text-decoration: underline;
        }

        .additional-info {
            color: #333030;
            opacity: 0.7;
            font-size: 12px;
            margin-top: 20px;
            text-align: center;
        }

        .left-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 40px;
            padding-top: 20px;
            box-sizing: border-box;
        }
        .right-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 40px;
            padding-top: 20px;
            box-sizing: border-box;
        }
        .left-content a {
            color: #F0563B;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .brand-name {
            background: linear-gradient(to right, #F0563B, #a7f3d0);
            -webkit-background-clip: text;
            color: transparent;
            font-size: 54px;
            font-weight: bold;
            margin-bottom: 5px;
            letter-spacing: -2px;
            text-align: left;
        }
        .right-content h1 {
            background: linear-gradient(to right, #F0563B, #a7f3d0);
            -webkit-background-clip: text;
            color: transparent;
            font-size: 48px;
            display: none;
            font-weight: bold;
            margin-bottom: 5px;
            letter-spacing: -2px;
            text-align: left;
        }

        .left-content p {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.7;
            max-width: 500px;
            text-align: left;
        }

        .left-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .left-content ul li {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 15px;
            opacity: 0.9;
            display: flex;
            align-items: center;
        }

        .left-content ul li i {
            margin-right: 15px;
            color: #F0563B;
            font-size: 24px;
        }

        @media (max-width: 768px) {
            .left-content {
                display: none;
            }

            .login-container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
        @media (min-width: 1600px) {
        .container {
            width: 1600px; /* or 1600px or more, depending on what you prefer */
        }
    }

        /* Custom styles for responsiveness */
        @media (max-width: 992px) { /* Medium screens and below (tablets) */
            .login-container {
                max-width: 500px; /* Slightly wider on tablets */
                padding: 25px;
            }

            .login-heading {
                font-size: 32px; /* Smaller heading on tablets */
            }

            .login-description {
                font-size: 16px; /* Smaller description on tablets */
            }

            .form-control {
                font-size: 14px; /* Smaller form control text on tablets */
                padding: 10px 12px;
            }

            .btn-login {
                font-size: 16px; /* Smaller button text on tablets */
                padding: 10px 20px;
            }

            .login-footer {
                font-size: 14px; /* Smaller footer text on tablets */
            }
        }

        @media (max-width: 768px) { /* Small screens and below (phones) */
            .login-container {
                max-width: 100%; /* Full width on phones */
                padding: 20px;
                border-radius: 0; /* No border radius on small screens */
                box-shadow: none; /* Remove shadow on small screens */
                background-color: transparent;
                border: none;
            }

            .login-heading {
                font-size: 28px; /* Smaller heading on phones */
            }

            .login-description {
                font-size: 14px; /* Smaller description on phones */
            }

            .form-control {
                font-size: 14px; /* Keep form control text size on phones */
                padding: 10px 12px;
            }

            .btn-login {
                font-size: 16px; /* Keep button text size on phones */
                padding: 10px 20px;
            }

            .login-footer {
                font-size: 12px; /* Smaller footer text on phones */
            }

            .additional-info {
                font-size: 12px;
            }
            .right-content h1{
                display: block;
                text-align: center;
            }
            .right-content h3{
                display: none;
            }
        }
    