 body {
            background-color: #f4f6f8;
            font-family: 'Inter', sans-serif;
            margin: 0;
            min-height: 100vh;
            display: flex;
        }
        .main-container {
            display: flex;
            flex: 1;
            min-height: 100vh;
        }   
        .form-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .form-container {
            max-width: 400px;
            width: 100%;
        }
        .form-section h2 {
            color: #0d6efd;
            font-weight: 700;
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }
        .form-section p {
            color: #495057;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .form-section .form-control {
            border-radius: 8px;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            font-size: 0.95rem;
        }
        .form-section .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }
        .form-section .btn-primary {
            background-color: #0d6efd;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            width: 100%;
            font-size: 1rem;
            font-weight: 500;
        }
        .form-section .btn-primary:hover {
            background-color: #0b5ed7;
        }
        .form-section a {
            color: #0d6efd;
            text-decoration: none;
        }
        .form-section a:hover {
            text-decoration: underline;
        }
        .social-buttons .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            font-size: 0.95rem;
            border-radius: 8px;
            border: 1px solid #ced4da;
            background-color: #fff;
            color: #333;
            transition: background-color 0.2s;
        }
        .social-buttons .btn:hover {
            background-color: #f8f9fa;
        }
        .promo-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            color: #fff;
            text-align: center;
            background-image: url('/static/images/login-banner.jpg');
            background-size: cover;
            background-position: center;
        }
        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
        }
        .logo img {
            height: 40px;
        }
        .password-container {
            position: relative;
        }
        .password-container .form-control {
            padding-right: 3rem;
        }
        .password-container .toggle-password {
            position: absolute;
            top: 50%;
            right: 0.75rem;
            transform: translateY(-50%);
            border: none;
            background: transparent;
            color: #6c757d;
            font-size: 1rem;
            cursor: pointer;
        }
        .password-container .toggle-password:hover {
            color: #0d6efd;
        }
        /* .forgot-password {
            
            text-align: right;

            font-size: 0.85rem;
            margin-top: 0.25rem;
        } */

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }
        .divider hr {
            flex: 1;
            border-color: #ced4da;
        }
        .divider span {
            margin: 0 1rem;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .alert-suspension {
            background-color: #fff3cd;
            color: #856404;
            border-color: #ffeeba;
        }
        .session-list {
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        .session-list ul {
            list-style: none;
            padding-left: 0;
        }
        .session-list li {
            margin-bottom: 0.5rem;
        }
        .force-login-btn {
            background-color: #ffc107;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            width: 100%;
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
            margin-top: 1rem;
        }
        .force-login-btn:hover {
            background-color: #e0a800;
        }
        @media (max-width: 768px) {
            .promo-section {
                display: none;
            }
            .form-section {
                padding: 1.5rem;
            }
        }