body.login-page {
            min-height: 100vh;
            background: #f3f4f6;
            font-family: Arial, Helvetica, sans-serif;
        }

        .login-wrapper {
            min-height: 100vh;
        }

        .login-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            padding: 2rem;
        }

        .login-logo-box {
            width: 100%;
            height: 82px;
            background: #FB513B;
            padding: 10px 25px;
            color: #fff;
            font-size: 1.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .login-title {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: .5rem;
        }

        .login-subtitle {
            color: #4b5563;
            margin-bottom: 2rem;
        }

        .form-label {
            font-weight: 600;
            color: #374151;
        }

        .form-control {
            min-height: 48px;
            border-radius: 0;
        }

        .form-control:focus {
            border-color: #FB513B;
            box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.15);
        }

        .btn-login {
            background: #FB513B;
            border-color: #FB513B;
            min-height: 52px;
            font-size: 1.125rem;
            font-weight: 400;
            border-radius: 0;
        }

        .btn-login:hover,
        .btn-login:focus,
        .btn-login:active {
            background: #e65000 !important;
            border-color: #e65000 !important;
        }

        .forgot-link {
            color: #FB513B;
            font-weight: 400;
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
            color: #e65000;
        }

        .demo-text {
            color: #6b7280;
            font-size: .95rem;
        }

        @media (max-width: 575.98px) {
            .login-card {
                padding: 1.5rem;
            }

            .login-title {
                font-size: 1.75rem;
            }

            .login-subtitle {
                font-size: .95rem;
            }
        }