        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .login-wrapper {
            display: flex;
            align-items: center;
            min-height: 100vh;
            position: relative;
            /* background-image is handled inline in the blade view */
            background-size: cover;
            background-position: center;
        }

        .login-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.65); /* Dark overlay to match image */
            z-index: 1;
        }

        .login-container {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 40px 15px;
        }

        .login-card {
            background-color: #f4f3ef; /* Off-white color from image */
            border-radius: 24px;
            padding: 45px 40px;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
        }

        .login-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .login-subtitle {
            font-size: 14px;
            color: #555;
            margin-bottom: 35px;
            line-height: 1.5;
        }

        .form-control {
            background-color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 14px 16px;
            font-size: 14px;
            color: #333;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
            background-color: #fff;
            outline: none;
        }

        .form-control::placeholder {
            color: #999;
        }

        .toggle-password {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            cursor: pointer;
            z-index: 10;
        }

        .text-small {
            font-size: 13px;
            color: #444;
        }

        .custom-checkbox {
            width: 16px;
            height: 16px;
            accent-color: #222;
            cursor: pointer;
        }

        .forgot-link {
            color: #555;
            text-decoration: underline;
            transition: color 0.3s;
        }

        .forgot-link:hover {
            color: #111;
        }

        .btn-login-dark {
            background-color: #262626;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 14px;
            width: 100%;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 25px;
            transition: background-color 0.3s ease;
        }

        .btn-login-dark:hover {
            background-color: #000000;
            color: #ffffff;
        }

        .login-footer {
            border-top: 1px solid rgba(0,0,0,0.08);
            padding-top: 25px;
            font-size: 13px;
            color: #555;
        }

        .login-footer a {
            color: #1a1a1a;
            font-weight: 700;
            text-decoration: underline;
        }

        /* Right Side Hero Text Styles */
        .hero-text-side {
            padding-left: 5%;
        }

        .hero-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            letter-spacing: 2px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 20px;
        }

        .hero-desc {
            font-size: 18px;
            color: #f0f0f0;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        .btn-outline-white {
            border: 1px solid #ffffff;
            color: #ffffff;
            background: transparent;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-outline-white:hover {
            background: #ffffff;
            color: #000000;
        }

        .error-message {
            background: rgba(255, 77, 79, 0.1);
            border: 1px solid rgba(255, 77, 79, 0.3);
            color: #FF4D4F;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            margin-bottom: 20px;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-text-side {
                padding-left: 15px;
                margin-top: 50px;
                text-align: center;
            }
            .hero-title {
                font-size: 48px;
            }
            .login-card {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 36px;
            }
            .hero-desc {
                font-size: 16px;
            }
            .login-card {
                padding: 30px 20px;
            }
        }

        /* Quote Box Styles */
        .quote-box-top {
            margin-bottom: 25px;
            max-width: 420px;
            width: 100%;
        }

        .quote-box-top .quote-icon {
            color: #D4A373;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .quote-box-top .quote-text {
            font-size: 15px;
            font-style: italic;
            line-height: 1.4;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .quote-box-top .quote-author {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .typing-cursor {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            animation: blink 0.8s infinite;
            margin-left: 2px;
            display: inline;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Mobile Branding styles */
        .mobile-branding .brand-title {
            font-family: 'Outfit', sans-serif;
        }
