body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f5f5f5;
        }
        .login-container {
            display: flex;
    		width=80%;
    		max-width: 1200px;
    		height: 500px;
    		border:1px solid #ccc;
    		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    		background-color: #7F82BB;
    		margin-top: 20px;
    		padding: 20px;
        }
        .login-left {
            flex: 1px;
    		display: flex;
    		flex-direction: column;
    		justify-content: center;
		    align-items: center;
    		padding: 10px;
			height: 90
        }
        .login-left img.logo {
            max-height: 100px;
            margin-bottom: 20px;
        }
        .login-left img.side-image {
            max-width: 500px;
            max-height: 400px;
			height: 700px;
            border-radius: 8px;
        }
        .login-right {
            padding: 40px;
            width: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
		}
        .login-right h2 {
            margin-bottom: 100px;
            text-align: center;
            color: #333;
			font-weight: bold;
        }
        .form-control {
            margin-bottom: 50px;
            border-radius: 5px;
			height: 40px;
        }
        .btn-primary {
			width: 270px;
            padding: 10px;
    		background-color: #007bff;
    		color: white;
    		border: none;
    		border-radius: 4px;
    		cursor: pointer;
    		font-weight: bold;
			margin-top: 20px;
        }

/* Mobile Responsive Styling */ 
@media (max-width: 600px) {
    .login-container {
	width: 400px;
        flex-direction: column;
        max-width: 500px;
	background-color: #fff;
	height: 90vh;
	overflow-y: auto;
    }
    .login-left {
	width: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .login-left img.logo {
	width: 300px;
        margin:  auto;
	align-item: center;
	margin-right: 70px;
    }
    .login-left img.side-image {
        display: none;
    }
