        body {
            font-family: 'Shabnam', Tahoma, sans-serif;
            background: #e8edf4;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px;
            overflow-y: auto;
            transition: background 0.3s ease;
        }
                @font-face {
            font-family: 'Shabnam';
            src: url('Shabnam.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }


        .card {
            max-width: 480px;
            width: 100%;
            background: white;
            border-radius: 28px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.08);
            padding: 32px 24px 40px;
            margin: auto;
            transition: background 0.3s ease;
        }
        
        .logo-img {
            max-width: 120px;
            width: auto;
            height: auto;
            max-height: 120px;
            object-fit: contain;
        }

        .logo-container { text-align: center; margin: 0 auto 16px; }

        .company-name {
            font-size: 1rem;
            font-weight: normal;
            text-align: center;
            color: #0b2b44;
            margin-bottom: 16px;
            line-height: 1.4;
        }
        
        .title-box {
            background: #f0f4f9;
            border-radius: 20px;
            padding: 14px 16px;
            text-align: center;
            margin-bottom: 20px;
            border-right: 5px solid #e6a017;
        }
        
        .title-text {
            font-size: 1.2rem;
            font-weight: normal;
            color: #0b2b44;
        }
        .logo-area {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .btn-back {
            background: linear-gradient(135deg, #64748b, #475569);
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 20px auto 10px;
            display: inline-block;
            width: auto;
            min-width: 200px;
            text-align: center;
            font-family: inherit;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .btn-back:hover {
            background: linear-gradient(135deg, #55657b, #3a4a62);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }


        
.btn-menu {
            display: block;
            width: 90%;
            margin: 10px auto;
            background: #0b2b44;
            color: white;
            text-align: center;
            padding: 14px 0;
            font-size: 0.9rem;
            font-weight: normal;
            border-radius: 60px;
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
            border: none;
            font-family: 'Shabnam', Tahoma, sans-serif;
        }
        
        .btn-menu:active {
            transform: scale(0.97);
            background: #072036;
        }
        
        .btn-menu.secondary {
            background: transparent;
            color: #0b2b44;
            border: 1.5px solid #0b2b44;
        }
        
        .btn-menu.secondary:active {
            background: #f0f4f9;
            transform: scale(0.97);
        }
                .footer {
            text-align: center;
            font-size: 0.6rem;
            color: #8a9bb0;
            margin-top: 28px;
            padding-top: 14px;
            border-top: 1px solid #e2e8f0;
        }
        .toast-notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #dc2626;
            color: white;
            padding: 14px 24px;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
            max-width: 90%;
            text-align: center;
        }
        .toast-notification.success {
            background: #10b981;
        }
        .toast-notification.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
                