
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            height: 100vh;
            margin: 0;
            overflow: hidden;
        }

        .login-container {
            height: 100vh;
            display: flex;
        }

        .banner-section {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .banner-content {
            text-align: center;
            color: white;
            z-index: 2;
            padding: 2rem;
        }

        label.required::after {
            content: " *";
            color: red;
            font-weight: bold;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* // background: url('/placeholder.svg?height=800&width=600') center/cover; */
            opacity: 0.3;
            z-index: 1;
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .logo-icon {
            width: 220px;
            height: auto;
            display: inline-block;
            filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2));
        }

        .banner-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 300px;
        }

        .feature-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }

        .feature-list i {
            margin-right: 1rem;
            color: #ffd700;
        }

        .form-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            padding: 2rem;
        }

        .login-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        .form-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .form-title h2 {
            font-weight: 700;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .form-title p {
            color: #6c757d;
            margin: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #e9ecef;
            border-radius: 0;

            font-size: 1rem;
            background: transparent;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            box-shadow: none;
            border-bottom-color: #667eea;
            background: transparent;
        }

        .form-label {
            color: #6c757d;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .btn-login {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .social-login {
            margin: 2rem 0;
        }

        .social-btn {
            border: 1px solid #e9ecef;
            padding: 0.75rem;
            margin: 0.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            width: 45%;
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .google-btn {
            color: #db4437;
            border-color: #db4437;
        }

        .facebook-btn {
            color: #4267B2;
            border-color: #4267B2;
        }

        .divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e9ecef;
        }

        .password-toggle {
            position: absolute;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            padding: 0.5rem;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .password-toggle:hover {
            color: #667eea;
        }

        .password-toggle:focus {
            outline: none;
            color: #667eea;
        }

        .divider span {
            background: white;
            padding: 0 1rem;
            color: #6c757d;
        }

        .form-check {
            margin: 1rem 0;
        }

        .form-check-input:checked {
            background-color: #667eea;
            border-color: #667eea;
        }

        .forgot-password {
            color: #667eea;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .forgot-password:hover {
            color: #764ba2;
        }

        .signup-link {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e9ecef;
        }

        .signup-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            color: #764ba2;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                overflow-y: auto;
            }

            .banner-section {
                min-height: 35vh;
                flex: none;
            }

            .banner-title {
                font-size: 2rem;
            }

            .banner-subtitle {
                font-size: 2rem;
            }

            .feature-list {
                display: none;
                /* Hide feature list on mobile to save space */
            }

            .form-section {
                flex: none;
                min-height: 65vh;
                padding: 1rem;
            }

            .login-form {
                padding: 1.5rem;
                margin: 0;
                border-radius: 15px;
            }

            .social-login {
                margin: 1.5rem 0;
            }

            .social-btn {
                width: 48%;
                /* Adjust social button width for better mobile layout */
            }
        }

        /* Additional mobile optimization for very small screens */
        @media (max-width: 480px) {
            .banner-section {
                display: none;
                min-height: 30vh;
            }

            .form-section {
                min-height: 70vh;
                padding: 0.5rem;
            }

            .login-form {
                padding: 1rem;
            }

            .banner-title {
                font-size: 1.5rem;
            }

            .social-btn {
                width: 100%;
                margin: 0.25rem 0;
            }
        }
