/* ===== Background ===== */
        .login-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
        }

        /* ===== Card (Horizontal Layout) ===== */
        .login-card {
            display: flex;
            width: 900px;
            max-width: 95%;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
            overflow: hidden;
        }

        /* ===== LEFT Image ===== */
        .login-card-image {
            width: 45%;
            background:
                /* linear-gradient(rgba(229, 57, 53, 0.6),
                    rgba(211, 47, 47, 0.6)), */
                url("./dist/img/photo-1556761175-4b46a572b786.jpg");
            background-size: cover;
            background-position: center;
        }

        /* ===== RIGHT Form ===== */
        .login-box-body {
            width: 55%;
            padding: 30px;
            background: #ffffff;
        }

        /* ===== Header Text ===== */
        .login-box-msg {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #444;
            margin-bottom: 24px;
        }

        /* ===== Inputs ===== */
        .login-form .form-control {
            height: 48px;
            border-radius: 8px;
            border: 1px solid #dcdcdc;
            padding: 0 14px;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .login-form .form-control:focus {
            border-color: #e53935;
            box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
        }

        /* ===== Button ===== */
        .btn-print {
            width: 100%;
            height: 50px;
            background: linear-gradient(135deg, #e53935, #d32f2f);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .btn-print:hover {
            background: linear-gradient(135deg, #d32f2f, #b71c1c);
        }

        /* ===== Error ===== */
        .alert {
            font-size: 13px;
            border-radius: 8px;
        }

        /* ===== Footer ===== */
        .login-footer {
            text-align: center;
            margin-top: 16px;
        }

        .login-footer a {
            font-size: 13px;
            color: #e53935;
            font-weight: 600;
            text-decoration: none;
        }

        .login-footer a:hover {
            text-decoration: underline;
        }


        .login-box {
            width: 700px;
            max-width: 95%;
        }

        @media (max-width: 768px) {
            .login-box {
                width: 100%;
            }
        }


        /* ===== Mobile Responsive ===== */
        @media (max-width: 768px) {
            .login-card {
                flex-direction: column;
                max-width: 420px;
            }

            .login-card-image {
                width: 100%;
                height: 180px;
            }

            .login-box-body {
                width: 100%;
                padding: 30px;
            }
        }