/* Scoped styles that only apply to login page */
        :root {
            --lpu-red: #8c0001;
            --lpu-red-dark: #6d0001;
            --portal-bg: #f4f7f6;
        }

        body {
            background-color: var(--portal-bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .login-portal-wrapper {
            display: flex;
            min-height: 100vh;
        }

        /* Side 1: Technical Branding (Hidden on Mobile) */
        .portal-sidebar {
            flex: 1.2;
            background: linear-gradient(135deg, var(--lpu-red), var(--lpu-red-dark));
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            color: white;
        }

        /* Side 2: Interactive Form */
        .portal-form-area {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 40px;
        }

        .auth-form-card {
            width: 100%;
            max-width: 400px;
        }

        /* Modern Input Styling */
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1.5px solid #e0e0e0;
            transition: all 0.2s ease;
        }

        .form-control:focus {
            border-color: var(--lpu-red);
            box-shadow: 0 0 0 3px rgba(140, 0, 1, 0.1);
        }

        .btn-portal {
            background-color: var(--lpu-red);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.2s ease;
        }

        .btn-portal:hover {
            background-color: var(--lpu-red-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hover effects for links */
        .forgot-link, .register-link {
            transition: all 0.3s ease;
            position: relative;
        }

        .forgot-link:hover, .register-link:hover {
            color: var(--lpu-red-dark) !important;
            text-decoration: underline !important;
        }

        .forgot-link:hover::after, .register-link:hover::after {
            opacity: 1;
        }

        @media (max-width: 991px) {
            .portal-sidebar { display: none; }
        }
