 body {
            margin: 0;
            background: #f0f2f5;
            font-family: 'Segoe UI', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            width: 100%;
            max-width: 1000px;
        }

        .card-left {
            background: url('/images/login_image.jpeg') center/cover no-repeat;
            width: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-overlay img {
            max-width: 150px;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
        }

        .login-form {
            padding: 60px 40px;
            background: #fff;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-form .logo {
            max-width: 120px;
            margin: 0 auto 25px;
        }

        .form-label {
            font-weight: 600;
        }

        .form-control {
            border-radius: 12px;
            padding: 10px 15px;
        }

        .btn-primary {
            border-radius: 12px;
            font-weight: bold;
            padding: 10px;
            background-color: #5c6c3a;
            border: 1px solid #5c6c3a;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #ff5900 !important;
        }

        .text-primary,
        a,
        a.text-decoration-none.text-primary {
            color: #ff5900 !important;
        }

        .form-check-label {
            margin-left: 5px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .card {
                flex-direction: column;
            }

            .card-left {
                width: 100%;
                height: 220px;
            }

            .login-form {
                width: 100%;
                padding: 30px 20px;
            }

            .logo-overlay img {
                max-width: 100px;
            }
        }

        @media (max-width: 576px) {
            .login-form {
                padding: 20px 15px;
            }

            .form-control {
                padding: 8px 12px;
            }

            .btn-primary {
                padding: 8px;
                font-size: 14px;
            }
        }

        /* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-left {
    animation: fadeInLeft 1s ease-out both;
}

.login-form {
    animation: fadeInRight 1s ease-out both;
}

.login-form form {
    animation: fadeInUp 1.2s ease-out both;
}
