/* CIBI — admin/auth/login.blade.php */
* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
        .login-card { background: #fff; border-radius: 12px; padding: 40px; width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
        .login-logo { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 28px; margin: 0 auto 20px; }
        .login-title { text-align: center; font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
        .login-subtitle { text-align: center; font-size: 13px; color: #64748b; margin-bottom: 28px; }
        .form-group { margin-bottom: 18px; }
        .form-label { display: block; font-size: 12px; font-weight: 600; color: #64748b; margin-bottom: 6px; }
        .form-control { width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 14px; transition: border .15s; }
        .form-control:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
        .form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
        .form-check input { width: 16px; height: 16px; }
        .form-check label { font-size: 13px; color: #64748b; cursor: pointer; }
        .btn { width: 100%; padding: 12px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
        .btn-primary { background: #3b82f6; color: #fff; } .btn-primary:hover { background: #2563eb; }
        .alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 13px; background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
