        body {
            background: #f4f6f9;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            direction: {{ app()->getLocale() === 'ar' ? 'rtl' : 'ltr' }};
            text-align: {{ app()->getLocale() === 'ar' ? 'right' : 'left' }};
        }

        .card {
            border: none;
            border-radius: 0.75rem;
            box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
            background: #fff;
            animation: fadeIn 0.5s ease-in-out;
        }

        .card-header {
            border-bottom: none;
            background: transparent;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .card-header h3 {
            font-weight: 600;
            color: #2c3e50;
        }

        .form-control {
            border-radius: 0.5rem;
            padding: 0.65rem 1rem;
            font-size: 0.95rem;
        }

        .form-label {
            font-weight: 500;
            color: #495057;
        }

        .btn-primary {
            border-radius: 0.5rem;
            padding: 0.65rem;
            font-weight: 600;
            background-color: #2c3e50;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #1a252f;
            transform: translateY(-1px);
            box-shadow: 0 0.5rem 1rem rgba(44, 62, 80, 0.2);
        }

        .btn-outline-secondary {
            border-radius: 0.5rem;
            padding: 0.45rem 0.9rem;
            font-size: 0.85rem;
        }

        .text-muted a {
            text-decoration: none;
            font-weight: 500;
        }

        .text-muted a:hover {
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
