 body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            flex-direction: column;
        }
        .container {
            display: flex;
            background-color: #dce0ee;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .logo-section, .login-section {
            padding: 20px;
        }
        .logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #4a69bb;
            border-right: 2px solid #ccc;
        }
        .login-section {
            text-align: center;
        }
        .login-section h2 {
            margin-bottom: 20px;
        }
        .input-group {
            margin-bottom: 15px;
            text-align: left;
        }
        .input-group label {
            display: block;
            font-weight: bold;
        }
        .input-group input, .input-group select {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .login-btn {
            background-color: #4a69bb;
            color: white;
            border: none;
            padding: 10px 15px;
            width: 100%;
            cursor: pointer;
            border-radius: 4px;
        }
        .login-btn:hover {
            background-color: #3a57a1;
        }
        .footer {
            margin-top: 15px;
            font-size: 12px;
            color: #555;
            text-align: center;
        }
        .bottom-section {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #333;
        }

/*dashboard*/
	