
        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        .split-screen-container {
            display: flex;
            height: 100vh;
            overflow: hidden;
        }

        .left-panel {
            flex: 1;
            background: linear-gradient(135deg, #007bff, #014fa0);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .welcome-content {
            max-width: 400px;
        }

        .company-name {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .welcome-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0;
            letter-spacing: 2px;
        }
        
        .welcome-content p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }

        .right-panel {
            flex: 1;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .form-card {
            max-width: 450px;
            width: 100%;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }

        .form-card h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #bc1414;
            margin-bottom: 5px;
        }

        .form-card p.subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .input-group {
            position: relative;
            margin-bottom: 25px;
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .input-group label {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
            transition: all 0.2s ease-out;
            background-color: white;
            padding: 0 5px;
            font-size: 1rem;
        }

        .input-group input:focus + label,
        .input-group input:not(:placeholder-shown) + label {
            top: 0;
            font-size: 0.8rem;
            color: #bc1414;
            transform: translateY(-50%);
        }

        .invalid-feedback {
            color: #dc3545;
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .form-options a {
            color: #bc1414;
            text-decoration: none;
            font-weight: 600;
        }
        
        .form-options label {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: #555;
        }

        .form-options input[type="checkbox"] {
            margin-right: 5px;
        }

        .btn-primary {
            width: 100%;
            padding: 12px;
            background-color: #bc1414;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            background-color: #252624;
            box-shadow: 0 4px 10px rgba(188, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
    .split-screen-container {
        flex-direction: column;
    }

    .left-panel {
        display: none; /* Hide the banner on small screens */
    }

    .right-panel {
        flex: none;
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-card {
        padding: 30px 20px;  
        box-shadow: none;
        width: 90%; 
        max-width: 400px; 
        margin: 20px auto; 
    }

    /* Adjust fonts for smaller screens */
    .form-card h2 {
        font-size: 1.8rem; 
    }

    .form-card p.subtitle {
        font-size: 0.8rem; 
    }

    .input-group input {
        font-size: 0.9rem; 
    }

    .btn-primary {
        font-size: 1rem; 
    }
}

